File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -386,7 +386,9 @@ def test_historical_features_from_bigquery_sources(
386386 online_store = SqliteOnlineStoreConfig (
387387 path = os .path .join (temp_dir , "online_store.db" ),
388388 ),
389- offline_store = BigQueryOfflineStoreConfig (type = "bigquery" ,),
389+ offline_store = BigQueryOfflineStoreConfig (
390+ type = "bigquery" , dataset = bigquery_dataset
391+ ),
390392 )
391393 )
392394 elif provider_type == "gcp" :
@@ -397,7 +399,9 @@ def test_historical_features_from_bigquery_sources(
397399 random .choices (string .ascii_uppercase + string .digits , k = 10 )
398400 ),
399401 provider = "gcp" ,
400- offline_store = BigQueryOfflineStoreConfig (type = "bigquery" ,),
402+ offline_store = BigQueryOfflineStoreConfig (
403+ type = "bigquery" , dataset = bigquery_dataset
404+ ),
401405 )
402406 )
403407 elif provider_type == "gcp_custom_offline_config" :
You can’t perform that action at this time.
0 commit comments