stdlib,tests: Fix mocked_resquest_post - add kwargs

Change-Id: I1c080d42b6f238d2f716c500913dc7576dc13ed6
This commit is contained in:
Bobby R. Bruce
2024-04-18 12:22:17 -07:00
parent e4ff5df35a
commit b80a04e146

View File

@@ -76,7 +76,7 @@ with open(Path(__file__).parent / "refs/mongo-dup-mock.json") as f:
duplicate_mock_json = json.load(f)
def mocked_requests_post(*args):
def mocked_requests_post(*args, **kwargs):
# mokcing urllib.request.urlopen
class MockResponse:
def __init__(self, json_data, status_code):