gemini-code-assist[bot] commented on code in PR #37296:
URL: https://github.com/apache/beam/pull/37296#discussion_r2688127712
##########
sdks/python/apache_beam/testing/pipeline_verifiers_test.py:
##########
@@ -122,15 +123,11 @@ def test_file_checksum_matcher_read_failed(self,
mock_match):
self.assertEqual(verifiers.MAX_RETRIES + 1, mock_match.call_count)
@patch.object(GCSFileSystem, 'match')
- @unittest.skipIf(HttpError is None, 'google-apitools is not installed')
+ @unittest.skipIf(GoogleAPICallError is None, 'google-apitools is not
installed')
Review Comment:

For consistency with other files in this PR, could you update the skip
message to `'GCP dependencies are not installed'`?
```suggestion
@unittest.skipIf(GoogleAPICallError is None, 'GCP dependencies are not
installed')
```
--
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]