summaryrefslogtreecommitdiff
path: root/tests/test_Changelog.py
diff options
context:
space:
mode:
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)