rjgoyln commented on code in PR #72701:
URL: https://github.com/apache/airflow/pull/72701#discussion_r3958504845
##########
providers/snowflake/tests/unit/snowflake/operators/test_snowpark_containers.py:
##########
@@ -173,7 +173,7 @@ def test_poll_waits_through_pending_then_done(self,
mock_hook_cls, mock_sleep):
[(True, True), (False, False)],
)
@mock.patch("time.sleep")
- @mock.patch("time.monotonic", side_effect=itertools.count(0, 20))
+ @mock.patch("time.monotonic", side_effect=[0, 5, 10])
Review Comment:
@Andrushika I’m thinking of opening a separate one to add test coverage for
#72709, since it currently doesn’t have a regression test. What do you think?
--
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]