aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/11_test_dch_main.py
diff options
context:
space:
mode:
authorEvgeni Golov <evgeni@debian.org>2015-06-27 17:59:12 +0200
committerGuido Günther <agx@sigxcpu.org>2015-06-30 08:44:10 +0200
commitdf215f320f3b9a79bf3676feaba7fdf5118469c2 (patch)
tree7d8b94cb131b8797973ae1b58f56e53f2190bef4 /tests/11_test_dch_main.py
parenta331b7f127c11fa0ecc6931660a906e2d906658b (diff)
call debchange instead of dch
Call the tool by its actual name instead of the abbriviation. dch is a symlink to debchange, which is not present on Fedora [1]. [1] https://bugzilla.redhat.com/show_bug.cgi?id=1236122 Signed-off-by: Guido Günther <agx@sigxcpu.org>
Diffstat (limited to 'tests/11_test_dch_main.py')
-rw-r--r--tests/11_test_dch_main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/11_test_dch_main.py b/tests/11_test_dch_main.py
index acea6920..8f7d9bf2 100644
--- a/tests/11_test_dch_main.py
+++ b/tests/11_test_dch_main.py
@@ -46,7 +46,7 @@ cl_debian = """test-package (0.9-1) unstable; urgency=%s
""" % default_urgency
-@unittest.skipIf(not os.path.exists('/usr/bin/dch'), "Dch not found")
+@unittest.skipIf(not os.path.exists('/usr/bin/debchange'), "Dch not found")
class TestScriptDch(DebianGitTestRepo):
"""Test git-dch"""