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


##########
tests/providers/google/cloud/transfers/test_sql_to_gcs.py:
##########
@@ -557,7 +557,7 @@ def 
test__write_local_data_files_csv_does_not_write_on_empty_rows(self):
         with pytest.raises(StopIteration):
             next(files)["file_handle"]
 
-        assert len([f for f in files]) == 0
+        assert not list(files)

Review Comment:
   This is really elegant. anyway, since the previous block already expects a 
`StopIteration`, we do not have to repeat it here. I'll remove it altogether.



##########
tests/providers/google/cloud/transfers/test_sql_to_gcs.py:
##########
@@ -557,7 +557,7 @@ def 
test__write_local_data_files_csv_does_not_write_on_empty_rows(self):
         with pytest.raises(StopIteration):
             next(files)["file_handle"]
 
-        assert len([f for f in files]) == 0
+        assert not list(files)

Review Comment:
   This is really elegant. Anyway, since the previous block already expects a 
`StopIteration`, we do not have to repeat it here. I'll remove it altogether.



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