summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2017-01-30 06:43:00 +0100
committerGuido Günther <agx@sigxcpu.org>2017-01-30 06:43:00 +0100
commita7e7bc6d89421f919f43ead780ff548225c3fe24 (patch)
treee49c5772df03d8c1d61cb90a68990f3c8b63b15d
parent0fc89bcdb4bbbded6c56e98b54426d34988b857c (diff)
tests: add missing braces
otherwise the test is skipped
-rw-r--r--tests/component/deb/test_buildpackage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/component/deb/test_buildpackage.py b/tests/component/deb/test_buildpackage.py
index b7ee795e..0567f0b0 100644
--- a/tests/component/deb/test_buildpackage.py
+++ b/tests/component/deb/test_buildpackage.py
@@ -174,7 +174,7 @@ class TestBuildpackage(ComponentTestBase):
m2 = hashlib.md5(open(tarball, 'rb').read()).hexdigest()
eq_(m1, m2, "Regenerated tarball has different checksum")
- @RepoFixtures.quilt30
+ @RepoFixtures.quilt30()
def test_tarball_max_compression(self, repo):
"""Test that passing max compression works (#820846)"""
self._test_buildpackage(repo, ['--git-no-pristine-tar', '--git-compression-level=9'])