Automatic style fix

This commit is contained in:
robot-clickhouse 2023-06-26 15:27:05 +00:00
parent 7cadfeac29
commit 5de8c4ac67

View File

@ -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