From 4a11d34facd696c55336aec95392e8bfc143f905 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Thu, 9 Feb 2023 19:57:48 +0000 Subject: [PATCH] Disable spec_set for timing plugin. --- tests/ut/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ut/conftest.py b/tests/ut/conftest.py index e40a6a10..0adcd1f4 100644 --- a/tests/ut/conftest.py +++ b/tests/ut/conftest.py @@ -29,7 +29,7 @@ def reset_caches(): @pytest.fixture def mock_cache(mocker): - return create_autospec(BaseCache(), spec_set=True) + return create_autospec(BaseCache()) @pytest.fixture