Remove unused mocker-fixture argument
This commit is contained in:
parent
0f0386f14a
commit
9c2daf630c
|
@ -65,6 +65,6 @@ def test_cache_needs_parsing(cache, tmpdir):
|
||||||
|
|
||||||
|
|
||||||
# INTEGRATION
|
# INTEGRATION
|
||||||
def test_cache_integration(cache_path, mocker):
|
def test_cache_integration(cache_path):
|
||||||
assert next(parse_logs(testlog_path, online_dc=False)) == \
|
assert next(parse_logs(testlog_path, online_dc=False)) == \
|
||||||
next(parse_logs(testlog_path, online_dc=False, cache_path=cache_path))
|
next(parse_logs(testlog_path, online_dc=False, cache_path=cache_path))
|
||||||
|
|
Loading…
Reference in New Issue