Skip to content

Commit 6cda5b0

Browse files
committed
Exception test now working.
1 parent 7d9eff0 commit 6cda5b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms/tests/test_data_structures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ def test_stack(self):
2121
result.append(self.stack.pop())
2222

2323
self.assertEqual(self.reverse, result)
24-
self.assertRaises(EmptyStackError, self.stack.empty())
24+
self.assertRaises(EmptyStackError, self.stack.pop)

0 commit comments

Comments
 (0)