diff --git a/hutch_python/tests/conftest.py b/hutch_python/tests/conftest.py index 35ac0f21..d1a8cc70 100644 --- a/hutch_python/tests/conftest.py +++ b/hutch_python/tests/conftest.py @@ -99,12 +99,12 @@ def find(self, multiples=False, **kwargs): @pytest.fixture(scope='function') def temporary_config(): # Write to our configuration - with open('qs.cfg', '+w') as f: + with open('web.cfg', '+w') as f: f.write(cfg) # Allow the test to run yield # Remove the file - os.remove('qs.cfg') + os.remove('web.cfg') @pytest.fixture(scope='function')