From 8f34d6a06954e3ded1a3dbb2afc7045aba33fab4 Mon Sep 17 00:00:00 2001 From: Ivan Reshetnikov Date: Sun, 21 Jul 2024 22:07:53 +0500 Subject: [PATCH] test: configure database connection --- config/test.exs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/test.exs b/config/test.exs index 053cf27..9684e8f 100644 --- a/config/test.exs +++ b/config/test.exs @@ -9,10 +9,10 @@ config :argon2_elixir, t_cost: 1, m_cost: 8 # to provide built-in test partitioning in CI environment. # Run `mix help test` for more information. config :comfycamp, Comfycamp.Repo, - username: "postgres", - password: "postgres", + username: "phoenix", + password: "simple-password", hostname: "localhost", - database: "comfycamp_test#{System.get_env("MIX_TEST_PARTITION")}", + database: "phoenix_test#{System.get_env("MIX_TEST_PARTITION")}", pool: Ecto.Adapters.SQL.Sandbox, pool_size: System.schedulers_online() * 2