Guest User

Untitled

a guest
Oct 18th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1. ======================================================================
  2. ERROR: test_iteritems (bounter.tests.hashtable.test_htc_iteration.HashTableIterationTest)
  3. ----------------------------------------------------------------------
  4. Traceback (most recent call last):
  5. File "/Volumes/work/workspace/bounter/bounter/tests/hashtable/test_htc_iteration.py", line 43, in test_iteritems
  6. self.assertEqual(set(self.ht.iteritems()), self.pairs)
  7. AttributeError: 'bounter_htc.HT_Basic' object has no attribute 'iteritems'
  8.  
  9. ======================================================================
  10. ERROR: test_iterkeys (bounter.tests.hashtable.test_htc_iteration.HashTableIterationTest)
  11. ----------------------------------------------------------------------
  12. Traceback (most recent call last):
  13. File "/Volumes/work/workspace/bounter/bounter/tests/hashtable/test_htc_iteration.py", line 31, in test_iterkeys
  14. self.assertEqual(set(self.ht.iterkeys()), self.keys)
  15. AttributeError: 'bounter_htc.HT_Basic' object has no attribute 'iterkeys'
  16.  
  17. ======================================================================
  18. ERROR: test_itervalues (bounter.tests.hashtable.test_htc_iteration.HashTableIterationTest)
  19. ----------------------------------------------------------------------
  20. Traceback (most recent call last):
  21. File "/Volumes/work/workspace/bounter/bounter/tests/hashtable/test_htc_iteration.py", line 37, in test_itervalues
  22. self.assertEqual(set(self.ht.itervalues()), self.values)
  23. AttributeError: 'bounter_htc.HT_Basic' object has no attribute 'itervalues'
  24.  
  25. ======================================================================
  26. ERROR: test_keys (bounter.tests.hashtable.test_htc_iteration.HashTableIterationTest)
  27. ----------------------------------------------------------------------
  28. Traceback (most recent call last):
  29. File "/Volumes/work/workspace/bounter/bounter/tests/hashtable/test_htc_iteration.py", line 28, in test_keys
  30. self.assertEqual(set(self.ht.keys()), self.keys)
  31. AttributeError: 'bounter_htc.HT_Basic' object has no attribute 'keys'
  32.  
  33. ======================================================================
  34. ERROR: test_values (bounter.tests.hashtable.test_htc_iteration.HashTableIterationTest)
  35. ----------------------------------------------------------------------
  36. Traceback (most recent call last):
  37. File "/Volumes/work/workspace/bounter/bounter/tests/hashtable/test_htc_iteration.py", line 34, in test_values
  38. self.assertEqual(set(self.ht.values()), self.values)
  39. AttributeError: 'bounter_htc.HT_Basic' object has no attribute 'values'
  40.  
  41. ----------------------------------------------------------------------
  42. Ran 188 tests in 23.863s
  43.  
  44. FAILED (errors=5)
  45. Test failed: <unittest.runner.TextTestResult run=188 errors=5 failures=0>
  46. error: Test failed: <unittest.runner.TextTestResult run=188 errors=5 failures=0>
Add Comment
Please, Sign In to add comment