diff options
| author | Julian Andres Klode <jak@debian.org> | 2015-06-16 16:44:32 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2015-06-16 16:44:32 +0200 |
| commit | b6055ab49ee5a605a1228e81885f552924ad998d (patch) | |
| tree | 2c7cb7441499b557535816798670050566708f57 /tests | |
| parent | 12b0e06cb6db76e60455d13269e6ff3fedab5812 (diff) | |
| download | python-apt-b6055ab49ee5a605a1228e81885f552924ad998d.tar.gz | |
tests/test_paths.py: Fix indentation
Geany misdetected it as 8 spaces, but it should be 4.
Gbp-Dch: ignore
Diffstat (limited to 'tests')
| -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) |
