Skip to content

Commit 1ec1055

Browse files
author
Jack Ye
committed
fix test
1 parent 35a3b6d commit 1ec1055

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

tests/catalog/test_glue.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,19 @@
4949

5050
@mock_aws
5151
def test_load_catalog_from_impl() -> None:
52-
assert isinstance(load_catalog("catalog", **{PY_CATALOG_IMPL: "pyiceberg.catalog.glue.GlueCatalog"}), GlueCatalog)
52+
assert isinstance(
53+
load_catalog(
54+
"catalog",
55+
**{
56+
PY_CATALOG_IMPL: "pyiceberg.catalog.glue.GlueCatalog",
57+
"region_name": "us-east-1",
58+
"aws_access_key_id": "access-key",
59+
"aws_secret_access_key": "secret-key",
60+
"aws_session_token": "session-token",
61+
},
62+
),
63+
GlueCatalog,
64+
)
5365

5466

5567
@mock_aws

0 commit comments

Comments
 (0)