aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2017-09-14 19:20:46 +0200
committerGuido Günther <agx@sigxcpu.org>2017-09-14 19:20:46 +0200
commit84596ab80278eaf388a5fbf206a13bd2faaccf1c (patch)
tree1cd47a8d9bb9ae2f92be9e2060e00c70ed8159ed /tests
parent9c596774b2f2b5fe7e5bab4d0b0211fa1b03e363 (diff)
Unbreack dch tests with newer devscripts
Due to #842468 debchange now produces shorter output omitting empty blocks if there weren't any changes by the maintainer invoking debchange (which is nice): diff --git a/../old b/../new index 7c61312b..3823def2 100644 --- a/../old +++ b/../new @@ -5,8 +5,6 @@ test-package (1.0-1~1.gbpa26a34) UNRELEASED; urgency=medium [ Guido Günther ] * added debian/control - [ gbp test user ] - -- gbp test user <gbp@example.com> Thu, 14 Sep 2017 19:18:45 +0200 So check for the matching lines in both the old and new location.
Diffstat (limited to 'tests')
-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 58571687..58b0eb94 100644
--- a/tests/11_test_dch_main.py
+++ b/tests/11_test_dch_main.py
@@ -394,7 +394,7 @@ class TestScriptDch(DebianGitTestRepo):
def test_dch_main_git_author(self):
options = ["--git-author", '-S', '-a']
lines = self.run_dch(options)
- self.assertIn("-- gbp test user <gbp@example.com>", lines[9])
+ self.assertIn("-- gbp test user <gbp@example.com>", lines[7] + lines[9])
def test_dch_main_no_git_author(self):
options = ["--no-git-author", '-S', '-a']