summaryrefslogtreecommitdiff
path: root/tests/test_setup.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-03-07 17:51:38 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-03-11 06:38:42 -0500
commitb9f4c86917422de3fe6ecd2976d7213897c93bb2 (patch)
treec8da98046baddd68bcde6a0834f861e071a69a49 /tests/test_setup.py
parentaf234f4a2a08dc1616c2270df6349925221c81e8 (diff)
downloadpython-coveragepy-git-b9f4c86917422de3fe6ecd2976d7213897c93bb2.tar.gz
test: reduce use of unittest
Diffstat (limited to 'tests/test_setup.py')
-rw-r--r--tests/test_setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_setup.py b/tests/test_setup.py
index 30456191..b2ccd67c 100644
--- a/tests/test_setup.py
+++ b/tests/test_setup.py
@@ -15,8 +15,8 @@ class SetupPyTest(CoverageTest):
run_in_temp_dir = False
- def setUp(self):
- super(SetupPyTest, self).setUp()
+ def setup_test(self):
+ super(SetupPyTest, self).setup_test()
# Force the most restrictive interpretation.
self.set_environ('LC_ALL', 'C')