summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSimponic <loganhunt@simponic.xyz>2022-12-29 18:49:46 -0700
committerSimponic <loganhunt@simponic.xyz>2022-12-29 18:49:46 -0700
commit1e91c61c6d82faa0159b3f8dcaebacc5893912fc (patch)
treeb9996c24bd5225b64d727315458d1c3e802460c9 /test
parent479ca815e3a1760c71e8977674434b15f94ae833 (diff)
downloadchessh-1e91c61c6d82faa0159b3f8dcaebacc5893912fc.tar.gz
chessh-1e91c61c6d82faa0159b3f8dcaebacc5893912fc.zip
Increase threshold for password/key auth timeout
Diffstat (limited to 'test')
-rw-r--r--test/ssh/ssh_auth_test.exs4
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