Skip to content

Commit

Permalink
fix test request handler mock
Browse files Browse the repository at this point in the history
  • Loading branch information
john-herholz-dt committed Aug 18, 2024
1 parent ca55530 commit 8bc7327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webservice/tests/test_webservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def test_web_service_get_url_combine(self):
def test_web_service_get_url_combine_full_url(self):
endpoint = "api/test"
result = self.webservice.call("get", url=self.url + endpoint)
responses.add(result)
responses.add(result.method, result.url)
self.assertEqual(result, b"{}")
self.assertEqual(len(responses.calls), 1)
self.assertEqual(
Expand Down

0 comments on commit 8bc7327

Please sign in to comment.