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() -