From a58b50c3bfb7de4cd78cc4cb1a7d109ee347b86a Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 6 Sep 2004 07:54:03 +0000 Subject: [PATCH] Slight augmentation. --- test/test_structures.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_structures.py b/test/test_structures.py index de959cdca..19423adda 100644 --- a/test/test_structures.py +++ b/test/test_structures.py @@ -585,8 +585,10 @@ class TestTimeoutQueue(SupyTestCase): self.assertEqual(len(q), 2) q.enqueue(3) self.assertEqual(len(q), 3) + self.assertEqual(sum(q), 6) time.sleep(1) self.assertEqual(len(q), 0) + self.assertEqual(sum(q), 0) # vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: