Taragolis commented on code in PR #38711:
URL: https://github.com/apache/airflow/pull/38711#discussion_r1552017192


##########
tests/providers/amazon/aws/utils/test_waiter_with_logging.py:
##########
@@ -37,7 +37,16 @@ def generate_response(state: str) -> dict[str, Any]:
     }
 
 
+def filter_record_tuples(
+    record_tuples: list[tuple[str, int, str]],
+    logger_name: str,
+) -> Iterator[tuple[str, int, str]]:
+    return filter(lambda rt: rt[0] == logger_name, record_tuples)

Review Comment:
   Need to create a wrapper around `caplog` fixture, I guess it might happen in 
other places



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to