summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_os.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py
index 26baca9..b3cf207 100644
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -1079,7 +1079,8 @@ class MakedirTests(unittest.TestCase):
@unittest.skipUnless(hasattr(os, 'chown'), "Test needs chown")
class ChownFileTests(unittest.TestCase):
- def setUpClass():
+ @classmethod
+ def setUpClass(cls):
os.mkdir(support.TESTFN)
def test_chown_uid_gid_arguments_must_be_index(self):
@@ -1124,7 +1125,8 @@ class ChownFileTests(unittest.TestCase):
os.chown(support.TESTFN, uid_1, gid)
os.chown(support.TESTFN, uid_2, gid)
- def tearDownClass():
+ @classmethod
+ def tearDownClass(cls):
os.rmdir(support.TESTFN)