summaryrefslogtreecommitdiff
path: root/test/auth/password_test.exs
diff options
context:
space:
mode:
authorSimponic <loganhunt@simponic.xyz>2022-12-29 17:49:42 -0700
committerSimponic <loganhunt@simponic.xyz>2022-12-29 18:04:38 -0700
commit0aab3c2027d54fc1ba834ab73fd53328952b7a1b (patch)
tree4df45d7fc9df4668f5a6bd8d49895d12fafd7448 /test/auth/password_test.exs
parent1a2bdccf124de6207899f59538cc0ed2efc97b5a (diff)
downloadchessh-0aab3c2027d54fc1ba834ab73fd53328952b7a1b.tar.gz
chessh-0aab3c2027d54fc1ba834ab73fd53328952b7a1b.zip
Make tests pass, rename jail threshold
Diffstat (limited to 'test/auth/password_test.exs')
-rw-r--r--test/auth/password_test.exs3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/auth/password_test.exs b/test/auth/password_test.exs
index 5e1b1d8..8c93ea9 100644
--- a/test/auth/password_test.exs
+++ b/test/auth/password_test.exs
@@ -5,7 +5,8 @@ defmodule Chessh.Auth.PasswordAuthenticatorTest do
@valid_user %{username: "logan", password: "password"}
setup_all do
- :ok = Ecto.Adapters.SQL.Sandbox.checkout(Chessh.Repo)
+ Ecto.Adapters.SQL.Sandbox.checkout(Repo)
+ Ecto.Adapters.SQL.Sandbox.mode(Repo, {:shared, self()})
{:ok, _user} = Repo.insert(Player.registration_changeset(%Player{}, @valid_user))