Skip to content

Commit 0f6e75e

Browse files
committed
Update test_https.py
1 parent e82f040 commit 0f6e75e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/integration/transport/test_https.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def test_security_warning_for_remote_http(self, caplog, capsys):
314314
captured = capsys.readouterr()
315315
log_messages = [str(record.message) for record in caplog.records] + [str(record.getMessage()) for record in caplog.records]
316316
all_output = " ".join(log_messages) + captured.out + captured.err
317-
317+
318318
assert "SECURITY WARNING" in all_output
319319
assert "without SSL/TLS" in all_output
320320

@@ -336,7 +336,7 @@ def test_no_security_warning_for_remote_https(self, https_certificates, caplog,
336336
captured = capsys.readouterr()
337337
log_messages = [str(record.message) for record in caplog.records] + [str(record.getMessage()) for record in caplog.records]
338338
all_output = " ".join(log_messages) + captured.out + captured.err
339-
339+
340340
assert "HTTPS enabled" in all_output
341341
assert "SECURITY WARNING" not in all_output
342342

0 commit comments

Comments
 (0)