harishkrao commented on a change in pull request #20527:
URL: https://github.com/apache/airflow/pull/20527#discussion_r779875924



##########
File path: tests/providers/airbyte/hooks/test_airbyte.py
##########
@@ -87,7 +87,7 @@ def test_wait_for_job_error(self, mock_get_job):
             self.hook.wait_for_job(job_id=self.job_id, wait_seconds=0)
 
         calls = [mock.call(job_id=self.job_id), mock.call(job_id=self.job_id)]
-        assert mock_get_job.has_calls(calls)
+        assert mock_get_job.assert_has_calls(calls, any_order=False)

Review comment:
       Yes, you are correct. I will fix this :) Thank you for pointing me in 
the right direction. I am new to this provider's code base, so taking time to 
understand what's needed.




-- 
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