eumiro commented on code in PR #33130:
URL: https://github.com/apache/airflow/pull/33130#discussion_r1284983401


##########
tests/providers/amazon/aws/hooks/test_batch_waiters.py:
##########
@@ -85,15 +85,15 @@ def test_default_config(self):
         assert config["version"] == 2
         assert isinstance(config["waiters"], dict)
 
-        waiters = list(sorted(config["waiters"].keys()))
+        waiters = sorted(config["waiters"].keys())
         assert waiters == ["JobComplete", "JobExists", "JobRunning"]
 
     def test_list_waiters(self):
         # the default config is used when no custom config is provided
         config = self.batch_waiters.waiter_config
 
         assert isinstance(config["waiters"], dict)
-        waiters = list(sorted(config["waiters"].keys()))
+        waiters = sorted(config["waiters"].keys())

Review Comment:
   In a new commit.



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