diff options
| author | Quentin Pradet <quentin.pradet@gmail.com> | 2019-09-27 17:23:40 +0400 |
|---|---|---|
| committer | Seth Michael Larson <sethmichaellarson@gmail.com> | 2019-09-27 08:23:40 -0500 |
| commit | d369183f60749d735f0676efb22ecd64fc694768 (patch) | |
| tree | be0227e30409da5febf291fb2c0de8eb4c64e140 /test/test_connection.py | |
| parent | 04184d837300ed47ed2aaee55cfd82891eb8ee1c (diff) | |
| download | urllib3-d369183f60749d735f0676efb22ecd64fc694768.tar.gz | |
Merge strings that fit on a single line (#1700)
Diffstat (limited to 'test/test_connection.py')
| -rw-r--r-- | test/test_connection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_connection.py b/test/test_connection.py index 77794898..a3cd29c9 100644 --- a/test/test_connection.py +++ b/test/test_connection.py @@ -37,7 +37,7 @@ class TestConnection(object): except CertificateError as e: assert "hostname 'bar' doesn't match 'foo'" in str(e) mock_log.assert_called_once_with( - "Certificate did not match expected hostname: %s. " "Certificate: %s", + "Certificate did not match expected hostname: %s. Certificate: %s", "bar", {"subjectAltName": [("DNS", "foo")]}, ) |
