From 1e91c61c6d82faa0159b3f8dcaebacc5893912fc Mon Sep 17 00:00:00 2001 From: Simponic Date: Thu, 29 Dec 2022 18:49:46 -0700 Subject: [PATCH] Increase threshold for password/key auth timeout --- test/ssh/ssh_auth_test.exs | 4 ++-- 1 file 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