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
4 changes: 2 additions & 2 deletions tests/e2e/test_client_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ def test_list_nodes_category(self, e2e_client: Client):
Args:
e2e_client: A Client instance.
"""
respone = e2e_client.list_nodes(category="Basic")
respone = e2e_client.list_nodes(category="Mathematical Operators")

# There should only be one node in the demo category
assert len(respone) == 1
assert respone[0]["category"] == "Basic"
assert respone[0]["category"] == "Mathematical Operators"
assert respone[0]["id"] == "Add"

def test_queue_node(self, e2e_client: Client):
Expand Down
Loading