hankehly commented on code in PR #27410:
URL: https://github.com/apache/airflow/pull/27410#discussion_r1009688930
##########
tests/providers/amazon/aws/operators/test_rds.py:
##########
@@ -829,6 +812,7 @@ def test_stop_db_cluster(self, mock_await_status):
describe_result =
self.hook.conn.describe_db_clusters(DBClusterIdentifier=DB_CLUSTER_NAME)
status = describe_result["DBClusters"][0]["Status"]
assert status == "stopped"
+ mock_await_status.assert_called()
Review Comment:
`mock_await_status` wasn't being used (but was probably intended to be) so I
added it.
--
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]