From: Markus Lehtonen Date: Thu, 25 Apr 2013 09:23:47 +0000 (+0300) Subject: tests: another fix for older dch X-Git-Tag: debian/0.6.0_git20130506~30 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dd788514f63a7debacd0233c86945d110d3b9a36;p=tools%2Fgit-buildpackage.git tests: another fix for older dch Signed-off-by: Markus Lehtonen --- diff --git a/tests/test_Changelog.py b/tests/test_Changelog.py index 0c84480..4e7017f 100644 --- a/tests/test_Changelog.py +++ b/tests/test_Changelog.py @@ -255,8 +255,8 @@ def test_add_section(): '0.5.33' >>> cl.debian_version '0.5.33' - >>> cl['Distribution'] - 'UNRELEASED' + >>> cl['Distribution'] in ['UNRELEASED', 'unstable'] + True >>> 'Test add section' in cl['Changes'] True >>> os.chdir(olddir) @@ -298,8 +298,8 @@ def test_add_entry(): '0.5.33' >>> cl.debian_version '0.5.33' - >>> cl['Distribution'] - 'UNRELEASED' + >>> cl['Distribution'] in ['UNRELEASED', 'unstable'] + True >>> 'Test add entry' in cl['Changes'] True >>> os.chdir(olddir)