mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Automatic style fix
This commit is contained in:
parent
7cadfeac29
commit
5de8c4ac67
@ -204,7 +204,9 @@ def test_https_non_ssl_auth():
|
||||
err_str = str(err.value)
|
||||
if count < MAX_RETRY and "Broken pipe" in err_str:
|
||||
count = count + 1
|
||||
logging.warning(f"Failed attempt with wrong cert, user: peter, err: {err_str}")
|
||||
logging.warning(
|
||||
f"Failed attempt with wrong cert, user: peter, err: {err_str}"
|
||||
)
|
||||
continue
|
||||
assert "unknown ca" in err_str
|
||||
break
|
||||
@ -222,7 +224,9 @@ def test_https_non_ssl_auth():
|
||||
err_str = str(err.value)
|
||||
if count < MAX_RETRY and "Broken pipe" in err_str:
|
||||
count = count + 1
|
||||
logging.warning(f"Failed attempt with wrong cert, user: jane, err: {err_str}")
|
||||
logging.warning(
|
||||
f"Failed attempt with wrong cert, user: jane, err: {err_str}"
|
||||
)
|
||||
continue
|
||||
assert "unknown ca" in err_str
|
||||
break
|
||||
|
Loading…
Reference in New Issue
Block a user