We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35a3b6d commit 1ec1055Copy full SHA for 1ec1055
tests/catalog/test_glue.py
@@ -49,7 +49,19 @@
49
50
@mock_aws
51
def test_load_catalog_from_impl() -> None:
52
- assert isinstance(load_catalog("catalog", **{PY_CATALOG_IMPL: "pyiceberg.catalog.glue.GlueCatalog"}), GlueCatalog)
+ 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
+ )
65
66
67
0 commit comments