From 34a8d19a33108813e81548a01f98325ea71e378e Mon Sep 17 00:00:00 2001 From: fazledyn-or Date: Wed, 18 Oct 2023 10:20:35 +0600 Subject: [PATCH] Formatted `test_ftp.py` using black --- tests/test_ftp.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/test_ftp.py b/tests/test_ftp.py index 3d25f182..d472f96e 100644 --- a/tests/test_ftp.py +++ b/tests/test_ftp.py @@ -51,7 +51,7 @@ def test_decode_location(self): "active": False, "path": "/", "port": 2121, - "secure": False + "secure": False, } self.assertEqual(config, wanted_config) # Test active FTP @@ -63,7 +63,7 @@ def test_decode_location(self): "active": True, "path": "/", "port": 2121, - "secure": False + "secure": False, } self.assertEqual(config, wanted_config) @@ -258,7 +258,7 @@ def test_decode_location(self): "active": False, "path": "/", "port": 2121, - "secure": True + "secure": True, } self.assertEqual(self.storage._config, wanted_config) @@ -266,4 +266,3 @@ def test_decode_location(self): def test_start_connection_calls_prot_p(self, mock_ftp): self.storage._start_connection() self.storage._connection.prot_p.assert_called_once() -