We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbbffc5 commit 1f8b372Copy full SHA for 1f8b372
1 file changed
tests/utils/test_config.py
@@ -59,10 +59,9 @@ def test_fix_nested_objects_from_environment_variables() -> None:
59
@mock.patch.dict(os.environ, EXAMPLE_ENV)
60
@mock.patch.dict(os.environ, {"PYICEBERG_CATALOG__DEVELOPMENT__URI": "https://dev.service.io/api"})
61
def test_list_all_known_catalogs() -> None:
62
- assert Config().get_known_catalogs() == [
63
- "production",
64
- "development",
65
- ]
+ catalogs = Config().get_known_catalogs()
+ assert "production" in catalogs
+ assert "development" in catalogs
66
67
68
def test_from_configuration_files(tmp_path_factory: pytest.TempPathFactory) -> None:
0 commit comments