Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/integration/test_infrahub_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ async def test_get_one(self, client: InfrahubClient, base_dataset, cat_luna, per
async def test_filters_partial_match(self, client: InfrahubClient, base_dataset):
nodes = await client.filters(kind=TESTING_PERSON, name__value="Walker")
assert not nodes
print("a")

nodes = await client.filters(kind=TESTING_PERSON, partial_match=True, name__value="Walker")
assert len(nodes) == 2
Expand Down
Loading