File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ def table_bucket_arn() -> str:
3030
3131@pytest .fixture
3232def catalog (table_bucket_arn : str ) -> S3TableCatalog :
33- properties = {"s3tables.table-bucket-arn" : table_bucket_arn }
33+ properties = {"s3tables.table-bucket-arn" : table_bucket_arn , "s3tables.region" : "us-east-1" , "s3.region" : "us-east-1" }
3434 return S3TableCatalog (name = "test_s3tables_catalog" , ** properties )
3535
3636
3737def test_creating_catalog_validates_s3_table_bucket_exists (table_bucket_arn : str ) -> None :
38- properties = {"s3tables.table-bucket-arn" : f"{ table_bucket_arn } -modified" }
38+ properties = {"s3tables.table-bucket-arn" : f"{ table_bucket_arn } -modified" , "s3tables.region" : "us-east-1" }
3939 with pytest .raises (TableBucketNotFound ):
4040 S3TableCatalog (name = "test_s3tables_catalog" , ** properties )
4141
You can’t perform that action at this time.
0 commit comments