Skip to content

Commit 5db79f5

Browse files
committed
Fix integration test
1 parent 17cef75 commit 5db79f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/integration/discovery/test_discovery.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def api_client() -> MetadataAPIClient:
1212

1313
if not host or not token:
1414
raise ValueError("DBT_HOST and DBT_TOKEN environment variables are required")
15-
return MetadataAPIClient(host=host, token=token)
15+
return MetadataAPIClient(url=f"https://metadata.{host}/graphql", token=token)
1616

1717

1818
@pytest.fixture

0 commit comments

Comments
 (0)