From d99ffb8b28dad8911f7122230d47362b989eb34e Mon Sep 17 00:00:00 2001 From: Matteo Lodi <30625432+mlodic@users.noreply.github.com> Date: Thu, 15 Apr 2021 16:15:13 +0200 Subject: [PATCH] adjust to last commit --- tests/mock_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/mock_utils.py b/tests/mock_utils.py index 0a5a12116a..52d5ecf36b 100644 --- a/tests/mock_utils.py +++ b/tests/mock_utils.py @@ -23,10 +23,10 @@ class MockResponseNoOp: def __init__(self, json_data, status_code): pass - def search(self, **kwargs): + def search(self, *args, **kwargs): return {} - def query(self, **kwargs): + def query(self, *args, **kwargs): return {}