summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--tests/conftest.py1
-rw-r--r--tests/test_transport.py3
2 files changed, 3 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index f3dc2d61..6824ff0d 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -24,6 +24,7 @@ from ._util import _support
from icecream import ic, install as install_ic
+# Better print() for debugging - use ic()!
install_ic()
ic.configureOutput(includeContext=True)
diff --git a/tests/test_transport.py b/tests/test_transport.py
index d8ac8a4b..485e94f9 100644
--- a/tests/test_transport.py
+++ b/tests/test_transport.py
@@ -1368,7 +1368,8 @@ class TestExtInfo(unittest.TestCase):
),
) as (tc, _):
assert tc.is_authenticated()
- # Client settled on 256 despite itself not having 512 disabled
+ # Client settled on 256 despite itself not having 512 disabled (and
+ # otherwise, 512 would have been earlier in the preferred list)
assert tc._agreed_pubkey_algorithm == "rsa-sha2-256"