summaryrefslogtreecommitdiffhomepage
path: root/tests/testutils
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/testutils
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/testutils')
-rw-r--r--tests/testutils/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testutils/__init__.py b/tests/testutils/__init__.py
index 092d377c..3ead68ee 100644
--- a/tests/testutils/__init__.py
+++ b/tests/testutils/__init__.py
@@ -69,7 +69,7 @@ def get_dch_default_urgency():
tempdir = tempfile.mkdtemp()
tmp_dch_name = os.path.join(tempdir, 'changelog')
try:
- dch_cmd = ['dch', '--create', '--empty', '--changelog', tmp_dch_name,
+ dch_cmd = ['debchange', '--create', '--empty', '--changelog', tmp_dch_name,
'--package=foo', '--newversion=1',
'--distribution=UNRELEASED']
ret = subprocess.Popen(dch_cmd).wait()