summaryrefslogtreecommitdiff
path: root/tests/test_Changelog.py
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2013-04-25 12:23:47 +0300
committerGuido Günther <agx@sigxcpu.org>2013-04-25 21:01:14 +0200
commitdd788514f63a7debacd0233c86945d110d3b9a36 (patch)
tree2a8be757b86f7863f86b576b69c1426534b861df /tests/test_Changelog.py
parentf19ff5cd0353d3212d7dfcdb5960086bf80813a3 (diff)
tests: another fix for older dch
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Diffstat (limited to 'tests/test_Changelog.py')
-rw-r--r--tests/test_Changelog.py8
1 files changed, 4 insertions, 4 deletions
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)