File tree 2 files changed +2
-2
lines changed
vertexai/batch_prediction
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -657,7 +657,7 @@ def test_submit_batch_prediction_job_with_invalid_input_dataset(self):
657
657
invalid_bq_uris = ["bq://projectId.dataset1" , "bq://projectId.dataset2" ]
658
658
with pytest .raises (
659
659
ValueError ,
660
- match = ("Multiple Bigquery input datasets are not supported." ),
660
+ match = ("Multiple BigQuery input datasets are not supported." ),
661
661
):
662
662
batch_prediction .BatchPredictionJob .submit (
663
663
source_model = _TEST_GEMINI_MODEL_NAME ,
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ def submit(
171
171
gcs_source = input_dataset
172
172
elif first_input_uri .startswith ("bq://" ):
173
173
if not isinstance (input_dataset , str ):
174
- raise ValueError ("Multiple Bigquery input datasets are not supported." )
174
+ raise ValueError ("Multiple BigQuery input datasets are not supported." )
175
175
bigquery_source = input_dataset
176
176
else :
177
177
raise ValueError (
You can’t perform that action at this time.
0 commit comments