Skip to content

Commit 1bd75c2

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ee162ef commit 1bd75c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/integration/logging_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_session_log_level_debug(caplog, free_port_num):
3131
# This log message is shown at different log levels
3232
# in different libssh versions. Changed at 657d9143d1 (before 0.11.0)
3333
expected_copyright_log_level = 'DEBUG'
34-
if tuple(map(int, (__libssh_version__.split(".")))) < (0, 11, 0):
34+
if tuple(map(int, (__libssh_version__.split('.')))) < (0, 11, 0):
3535
expected_copyright_log_level = 'INFO'
3636
assert any(
3737
record.levelname == expected_copyright_log_level

0 commit comments

Comments
 (0)