Skip to content

Commit cffaf3d

Browse files
Remove unused fixture from test_config_pickle_protocol (#13590)
1 parent 2c2159f commit cffaf3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_config/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def test_config_not_found(tmp_path):
143143

144144

145145
@pytest.mark.parametrize('protocol', list(range(pickle.HIGHEST_PROTOCOL)))
146-
def test_config_pickle_protocol(tmp_path, protocol: int):
146+
def test_config_pickle_protocol(protocol: int):
147147
config = Config()
148148

149149
pickled_config = pickle.loads(pickle.dumps(config, protocol))

0 commit comments

Comments
 (0)