Use setUpClass and tearDownClass correctly in test_os.
According to the documentation, they must be decorated as classmethods.
This commit is contained in:
parent
e1f6805776
commit
036a71bf25
@ -1080,7 +1080,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):
|
||||
@ -1125,7 +1126,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)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user