diff options
-rw-r--r-- | Lib/test/test_structseq.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_structseq.py b/Lib/test/test_structseq.py index 6e57e22f77..f01bc44b05 100644 --- a/Lib/test/test_structseq.py +++ b/Lib/test/test_structseq.py @@ -7,6 +7,7 @@ class StructSeqTest(unittest.TestCase): def test_tuple(self): t = time.gmtime() + assert isinstance(t, tuple) astuple = tuple(t) self.assertEqual(len(t), len(astuple)) self.assertEqual(t, astuple) |