diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-07-12 14:55:55 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-07-12 14:55:55 +0200 |
| commit | 008ba8e659c6aabe66496aab0bfbeb0bf92a9e30 (patch) | |
| tree | f6b2ec1effefbed34de7e8a9ea01f5885f0cdd30 /tests/test_progress.py | |
| parent | 4325749c7bfe5f1e83983415e13eafd84bb62907 (diff) | |
| parent | 3b155e595fed78f8eac22de78106cd3dcad9793c (diff) | |
| download | python-apt-008ba8e659c6aabe66496aab0bfbeb0bf92a9e30.tar.gz | |
merged from debian-sid, improve test output
Diffstat (limited to 'tests/test_progress.py')
| -rw-r--r-- | tests/test_progress.py | 3 |
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): |
