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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_Changelog.py b/tests/test_Changelog.py
index 30f25e5..9b0a0e7 100644
--- a/tests/test_Changelog.py
+++ b/tests/test_Changelog.py
@@ -237,7 +237,7 @@ def test_add_section():
>>> testclname = os.path.join(testdebdir, "changelog")
>>> os.mkdir(testdebdir)
>>> clh = open(os.path.join(testdebdir, "changelog"), "w")
- >>> clh.write(cl_debian)
+ >>> ret = clh.write(cl_debian)
>>> clh.close()
>>> os.chdir(testdir)
>>> os.path.abspath(os.path.curdir) == testdir
@@ -283,7 +283,7 @@ def test_add_entry():
>>> testclname = os.path.join(testdebdir, "changelog")
>>> os.mkdir(testdebdir)
>>> clh = open(os.path.join(testdebdir, "changelog"), "w")
- >>> clh.write(cl_debian)
+ >>> ret = clh.write(cl_debian)
>>> clh.close()
>>> os.chdir(testdir)
>>> os.path.abspath(os.path.curdir) == testdir