From 9c2daf630c1765ee0d030253e85db8888a7fadd0 Mon Sep 17 00:00:00 2001 From: Thor77 Date: Thu, 1 Feb 2018 16:13:04 +0100 Subject: [PATCH] Remove unused mocker-fixture argument --- tsstats/tests/test_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsstats/tests/test_cache.py b/tsstats/tests/test_cache.py index 3d9d272..0c0bf70 100644 --- a/tsstats/tests/test_cache.py +++ b/tsstats/tests/test_cache.py @@ -65,6 +65,6 @@ def test_cache_needs_parsing(cache, tmpdir): # INTEGRATION -def test_cache_integration(cache_path, mocker): +def test_cache_integration(cache_path): assert next(parse_logs(testlog_path, online_dc=False)) == \ next(parse_logs(testlog_path, online_dc=False, cache_path=cache_path))