diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-05-02 18:48:38 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-05-05 12:27:20 -0400 |
commit | b5db25896f784da7dbe6f208a46a162a5107e1d5 (patch) | |
tree | 105b31a8ed4d33f2cfa941ae32307f36df8cbd62 | |
parent | 9b0bc779b53db4217c0766c9210607eafcf93a69 (diff) |
Comment updates
-rw-r--r-- | tests/conftest.py | 1 | ||||
-rw-r--r-- | tests/test_transport.py | 3 |
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" |