From 07b32e1e06fe6775d81c60dff92641ef2d764ff0 Mon Sep 17 00:00:00 2001 From: Adam Dangoor Date: Fri, 23 May 2025 06:20:29 +0100 Subject: [PATCH] Remove unused fixture from test_config_pickle_protocol --- tests/test_config/test_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_config/test_config.py b/tests/test_config/test_config.py index 5e68b4a9657..fc1ba4c7321 100644 --- a/tests/test_config/test_config.py +++ b/tests/test_config/test_config.py @@ -143,7 +143,7 @@ def test_config_not_found(tmp_path): @pytest.mark.parametrize('protocol', list(range(pickle.HIGHEST_PROTOCOL))) -def test_config_pickle_protocol(tmp_path, protocol: int): +def test_config_pickle_protocol(protocol: int): config = Config() pickled_config = pickle.loads(pickle.dumps(config, protocol))