Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
sjrl committed Apr 11, 2024
1 parent a1f0b2a commit 4207b0e
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions test/nodes/test_join_documents.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,6 @@ def test_join_node_empty_documents():
output = pipe.run(query="test", documents=[])
assert len(output["documents"]) == 0

# Test lists of document lists
output = join_node.run_batch(queries=["test"], documents=[])
assert len(output[0]["documents"]) == 0


@pytest.mark.unit
def test_join_node_none_documents():
Expand All @@ -175,7 +171,3 @@ def test_join_node_none_documents():
# Test single document lists
output = pipe.run(query="test", documents=None)
assert len(output["documents"]) == 0

# Test lists of document lists
output = join_node.run_batch(queries=["test"], documents=None)
assert len(output[0]["documents"]) == 0

0 comments on commit 4207b0e

Please sign in to comment.