From 98b3722bf75f4623953bebe90be2ee57a26cffa2 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 1 Jul 2011 02:56:15 +0200 Subject: [PATCH] test_os: add TemporaryFileTests to the testcase list The testcase was never executed, it's now fixed. --- Lib/test/test_os.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index af02939ff02..0866593f077 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -1344,6 +1344,7 @@ def test_main(): PidTests, LoginTests, LinkTests, + TemporaryFileTests, ) if __name__ == "__main__":