diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-03 21:25:42 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-03 21:25:42 (GMT) |
commit | d412b495da02c38eaa8b46d08f9f7f0f54c3f7bd (patch) | |
tree | bbf2cfc1c8afcb33c81e0f6e91141a1989d6b6c9 /Lib/test/test_os.py | |
parent | 32e23e739f858fcf47332e437d6c4d4f14b2b697 (diff) | |
download | cpython-d412b495da02c38eaa8b46d08f9f7f0f54c3f7bd.zip cpython-d412b495da02c38eaa8b46d08f9f7f0f54c3f7bd.tar.gz cpython-d412b495da02c38eaa8b46d08f9f7f0f54c3f7bd.tar.bz2 |
Fix test_os (issue #18702).
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r-- | Lib/test/test_os.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index a35162f..dd0696e 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -316,7 +316,7 @@ class StatAttributeTests(unittest.TestCase): return buf.value @unittest.skipUnless(sys.platform == "win32", "Win32 specific tests") - @unittest.skipUnless(get_file_system(support.TESTFN) == "NTFS", + @unittest.skipUnless(get_file_system(test_support.TESTFN) == "NTFS", "requires NTFS") def test_1565150(self): t1 = 1159195039.25 @@ -324,7 +324,7 @@ class StatAttributeTests(unittest.TestCase): self.assertEqual(os.stat(self.fname).st_mtime, t1) @unittest.skipUnless(sys.platform == "win32", "Win32 specific tests") - @unittest.skipUnless(get_file_system(support.TESTFN) == "NTFS", + @unittest.skipUnless(get_file_system(test_support.TESTFN) == "NTFS", "requires NTFS") def test_large_time(self): t1 = 5000000000 # some day in 2128 |