From 7afc55c37598a24cd0432a513bb813e190223a3d Mon Sep 17 00:00:00 2001 From: dlyssenko <88390151+dlyssenko@users.noreply.github.com> Date: Sat, 14 Dec 2024 02:15:24 +0100 Subject: [PATCH] Update test_client.py added missing space --- test/system/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system/test_client.py b/test/system/test_client.py index 673ef21..367b6e1 100644 --- a/test/system/test_client.py +++ b/test/system/test_client.py @@ -311,7 +311,7 @@ def tearDown(self): def test_secure_transport( self ): # create key and cert temp files - with tempfile.NamedTemporaryFile() as kf,\ + with tempfile.NamedTemporaryFile() as kf, \ tempfile.NamedTemporaryFile() as cf: kf.write( private_key.encode() ) kf.flush()