changeset: 86218:89e405e6a7a9 parent: 86216:29c4a6a11e76 user: Christian Heimes date: Sat Oct 12 01:38:52 2013 +0200 files: Lib/test/test_structseq.py description: Issue #19209: fix structseq test diff -r 29c4a6a11e76 -r 89e405e6a7a9 Lib/test/test_structseq.py --- a/Lib/test/test_structseq.py Sat Oct 12 01:27:08 2013 +0200 +++ b/Lib/test/test_structseq.py Sat Oct 12 01:38:52 2013 +0200 @@ -38,7 +38,7 @@ # os.stat() gives a complicated struct sequence. st = os.stat(__file__) rep = repr(st) - self.assertTrue(rep.startswith(os.name + ".stat_result")) + self.assertTrue(rep.startswith("os.stat_result")) self.assertIn("st_mode=", rep) self.assertIn("st_ino=", rep) self.assertIn("st_dev=", rep)