summaryrefslogtreecommitdiff
path: root/tests/test_progress.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_progress.py')
-rw-r--r--tests/test_progress.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_progress.py b/tests/test_progress.py
index 2ab8ce5e..ffab5bc0 100644
--- a/tests/test_progress.py
+++ b/tests/test_progress.py
@@ -15,6 +15,9 @@ import os
class TestAcquireProgress(apt.progress.base.AcquireProgress):
def pulse(self, owner):
self.pulsed = True
+ # there should be a return value here, either (True,False)
+ # but often this is forgoten (and causes odd error messages)
+ # so the lib supports it. we test the lack of support value here
class TestProgress(unittest.TestCase):