From 0e5548691f12e89883e4d062a253a0195fa85467 Mon Sep 17 00:00:00 2001 From: Greg Rychlewski Date: Wed, 15 Nov 2023 03:40:05 -0500 Subject: [PATCH] format --- test/ecto/adapters/sqlite3_test.exs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/ecto/adapters/sqlite3_test.exs b/test/ecto/adapters/sqlite3_test.exs index 22edd77..8721867 100644 --- a/test/ecto/adapters/sqlite3_test.exs +++ b/test/ecto/adapters/sqlite3_test.exs @@ -6,7 +6,8 @@ defmodule Ecto.Adapters.SQLite3ConnTest do @uuid_regex ~R/^[[:xdigit:]]{8}\b-[[:xdigit:]]{4}\b-[[:xdigit:]]{4}\b-[[:xdigit:]]{4}\b-[[:xdigit:]]{12}$/ setup do - original_binary_id_type = Application.get_env(:ecto_sqlite3, :binary_id_type, :string) + original_binary_id_type = + Application.get_env(:ecto_sqlite3, :binary_id_type, :string) on_exit(fn -> Application.put_env(:ecto_sqlite3, :binary_id_type, original_binary_id_type)