Skip to content

Commit

Permalink
Fix E2E tests
Browse files Browse the repository at this point in the history
  • Loading branch information
leila-messallem committed Dec 18, 2024
1 parent bd34e1a commit 23a8001
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/e2e/test_graphrag_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ def test_graphrag_happy_path(
biology
Answer:
"""
""",
None,
)
assert isinstance(result, RagResultModel)
assert result.answer == "some text"
Expand Down Expand Up @@ -117,7 +118,8 @@ def test_graphrag_happy_path_return_context(
biology
Answer:
"""
""",
None,
)
assert isinstance(result, RagResultModel)
assert result.answer == "some text"
Expand Down Expand Up @@ -163,7 +165,8 @@ def test_graphrag_happy_path_examples(
biology
Answer:
"""
""",
None,
)
assert result.answer == "some text"

Expand Down

0 comments on commit 23a8001

Please sign in to comment.