We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13c6f47 commit cb4514eCopy full SHA for cb4514e
1 file changed
unit_tests/sources/streams/http/test_http.py
@@ -222,7 +222,8 @@ def get_error_handler(self) -> Optional[ErrorHandler]:
222
send_mock = mocker.patch.object(requests.Session, "send", return_value=req)
223
224
with pytest.raises(
225
- AirbyteTracedException, match="Rate limit exceeded. Try decreasing concurrency or the number of workers to stay within API rate limits."
+ AirbyteTracedException,
226
+ match="Rate limit exceeded. Try decreasing concurrency or the number of workers to stay within API rate limits.",
227
):
228
list(stream.read_records(SyncMode.full_refresh))
229
if retries <= 0:
0 commit comments