summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2015-06-16 16:44:32 +0200
committerJulian Andres Klode <jak@debian.org>2015-06-16 16:44:32 +0200
commitb6055ab49ee5a605a1228e81885f552924ad998d (patch)
tree2c7cb7441499b557535816798670050566708f57 /tests
parent12b0e06cb6db76e60455d13269e6ff3fedab5812 (diff)
downloadpython-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.py8
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)