commit | e19aad4c7b4804b4a13aca3999363f9d33a4fa75 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Feb 12 00:23:56 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Feb 12 00:23:56 2007 +0000 |
tree | 5d849a125929962e6ac73be65c7fd44683fa8181 | |
parent | dde4c2ca5694b1b53e4742962abcb1365126cbcd [diff] [blame] |
Fix unittest.
diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py index bcd2918..6c98022 100644 --- a/Lib/test/test_marshal.py +++ b/Lib/test/test_marshal.py
@@ -167,7 +167,7 @@ os.unlink(test_support.TESTFN) def test_list(self): - lst = self.d.items() + lst = list(self.d.items()) new = marshal.loads(marshal.dumps(lst)) self.assertEqual(lst, new) marshal.dump(lst, open(test_support.TESTFN, "wb"))