Skip to content

Commit

Permalink
Added assertion for empty foreign key constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
ongdisheng committed Nov 13, 2024
1 parent 2416ed6 commit 7113489
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ibis-server/tests/routers/v2/connector/test_snowflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,9 @@ def test_metadata_list_constraints():
)
assert response.status_code == 200

result = response.json()
assert len(result) == 0

def test_metadata_get_version():
response = client.post(
url=f"{base_url}/metadata/version",
Expand Down

0 comments on commit 7113489

Please sign in to comment.