From b9f4c86917422de3fe6ecd2976d7213897c93bb2 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 7 Mar 2021 17:51:38 -0500 Subject: test: reduce use of unittest --- tests/test_setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_setup.py') 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') -- cgit v1.2.1