We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1a314e commit c1dd6c2Copy full SHA for c1dd6c2
2 files changed
tests/e2e/notice_fetcher/test_ted_api.py
@@ -29,4 +29,4 @@ def test_ted_api_error():
29
ted = TedAPIAdapter(request_api=TedRequestAPI())
30
with pytest.raises(Exception) as e:
31
ted.get_by_query(query={"q": "NDE=67623-2022"})
32
- assert str(e.value) == "The API call failed with: <Response [500]>"
+ assert str(e.value) == "The TED-API call failed with: <Response [500]>"
tests/e2e/notice_fetcher/test_ted_request_api.py
@@ -11,5 +11,5 @@ def test_ted_request_api():
11
assert isinstance(notice_by_query, dict)
12
13
ted_api_request(api_url=config.TED_API_URL, api_query={"q": "INCORRECT PARAMS"})
14
15
0 commit comments