summaryrefslogtreecommitdiff
path: root/test/test_python.py
diff options
context:
space:
mode:
authorRyo Nakamura <upa@haeena.net>2023-09-09 14:32:15 +0900
committerRyo Nakamura <upa@haeena.net>2023-11-01 19:54:18 +0900
commitbf74aa095adf8d0a3b4144b29b2d7a48fe4e02b2 (patch)
treed3d58b31457af827cecf439b902e14b62d41c129 /test/test_python.py
parenta88471fc43a8500f73cd55eeb87b3a990cb0b4f9 (diff)
add -g option to specify TCP cc algorithm
This commit introduce SSH_OPTIONS_CCALGO option to the libssh patch and add -g CONGESTION option to mscp.
Diffstat (limited to 'test/test_python.py')
-rw-r--r--test/test_python.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_python.py b/test/test_python.py
index a6b2787..22d778a 100644
--- a/test/test_python.py
+++ b/test/test_python.py
@@ -121,6 +121,7 @@ param_invalid_kwargs = [
{ "cipher": "invalid" },
{ "hmac": "invalid"},
{ "compress": "invalid"},
+ { "ccalgo": "invalid"},
]
@pytest.mark.parametrize("kw", param_invalid_kwargs)