Commit 8a00eec2 authored by Michael Foord's avatar Michael Foord

Issue 10326: extend test for pickling of TestCase instances to ensure they can be unpickled too

parent 8ca6d988
......@@ -1107,3 +1107,5 @@ test case
# blew up prior to fix
pickled_test = pickle.dumps(test, protocol=protocol)
unpickled_test = pickle.loads(pickled_test)
self.assertEqual(test, unpickled_test)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment