aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/collector_test.py
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2009-10-28 18:14:13 -0300
committerMarcelo Lira <marcelo.lira@openbossa.org>2009-10-30 14:24:20 -0300
commit10b5327e02c3ce3f7339226c6289ce0daf230d95 (patch)
treed9f36fec425df106303d3182201177b98952b47f /tests/samplebinding/collector_test.py
parent2c70b9c40a49dd18bc390783464ef20ed088486d (diff)
fixed the collector_test.py
Diffstat (limited to 'tests/samplebinding/collector_test.py')
-rwxr-xr-xtests/samplebinding/collector_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/samplebinding/collector_test.py b/tests/samplebinding/collector_test.py
index 2ff2c7665..efa1a3876 100755
--- a/tests/samplebinding/collector_test.py
+++ b/tests/samplebinding/collector_test.py
@@ -46,7 +46,7 @@ class CollectorTest(unittest.TestCase):
collector = Collector()
collector << 2 << 3 << 5 << 7 << 11
self.assertEqual(collector.size(), 5)
- self.assertEqual(collector.items(), [2, 3, 5, 7, 11, 13])
+ self.assertEqual(collector.items(), [2, 3, 5, 7, 11])
if __name__ == '__main__':