Skip to content
Snippets Groups Projects
Commit 90638442 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fixes #15

parent fca3f92d
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,6 @@ class TestTraceback(unittest.TestCase):
p_fmt = tb.pretty_format()
self.assertTrue(p_fmt)
print(p_fmt)
def test_issue_21(self):
try:
......@@ -32,8 +31,7 @@ class TestTraceback(unittest.TestCase):
except ValueError:
tb = Traceback()
a = tb.pickle()
self.assertIsInstance(Traceback, pickle.loads(a))
self.assertIsInstance(pickle.loads(a), Traceback)
def test_compression_happens(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment