diff options
Diffstat (limited to 'tests/test_paths.py')
| -rw-r--r-- | tests/test_paths.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_paths.py b/tests/test_paths.py index 9fb98432..222848f7 100644 --- a/tests/test_paths.py +++ b/tests/test_paths.py @@ -42,10 +42,10 @@ class TestPath(unittest.TestCase): AcquireFile """ with warnings.catch_warnings(record=True) as caught_warnings: - apt_pkg.AcquireFile( - apt_pkg.Acquire(), "http://example.com", - destfile=self.file_bytes, - md5="abcdef") + apt_pkg.AcquireFile( + apt_pkg.Acquire(), "http://example.com", + destfile=self.file_bytes, + md5="abcdef") assert len(caught_warnings) == 1 assert issubclass(caught_warnings[0].category, DeprecationWarning) |
