diff options
author | Simponic <loganhunt@simponic.xyz> | 2022-12-29 18:49:46 -0700 |
---|---|---|
committer | Simponic <loganhunt@simponic.xyz> | 2022-12-29 18:49:46 -0700 |
commit | 1e91c61c6d82faa0159b3f8dcaebacc5893912fc (patch) | |
tree | b9996c24bd5225b64d727315458d1c3e802460c9 | |
parent | 479ca815e3a1760c71e8977674434b15f94ae833 (diff) | |
download | chessh-1e91c61c6d82faa0159b3f8dcaebacc5893912fc.tar.gz chessh-1e91c61c6d82faa0159b3f8dcaebacc5893912fc.zip |
Increase threshold for password/key auth timeout
-rw-r--r-- | test/ssh/ssh_auth_test.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ssh/ssh_auth_test.exs b/test/ssh/ssh_auth_test.exs index 27d5e4c..1f17d9f 100644 --- a/test/ssh/ssh_auth_test.exs +++ b/test/ssh/ssh_auth_test.exs @@ -72,8 +72,8 @@ defmodule Chessh.SSH.AuthTest do send(test_pid, :connected_via_public_key) end) - assert_receive(:connected_via_password, 500) - assert_receive(:connected_via_public_key, 500) + assert_receive(:connected_via_password, 1000) + assert_receive(:connected_via_public_key, 1000) end # TODO |