chore: changes query text in tests

This commit is contained in:
hajdul88 2024-11-26 17:29:44 +01:00
parent 98a517dd9f
commit c30683e20e
4 changed files with 4 additions and 4 deletions

View file

@ -62,7 +62,7 @@ async def main():
assert len(history) == 6, "Search history is not correct."
results = await brute_force_triplet_search('Who has the most experience with graphic design?')
results = await brute_force_triplet_search('What is a quantum computer?')
assert len(results) > 0
await cognee.prune.prune_data()

View file

@ -90,7 +90,7 @@ async def main():
history = await cognee.get_search_history()
assert len(history) == 6, "Search history is not correct."
results = await brute_force_triplet_search('Who has the most experience with graphic design?')
results = await brute_force_triplet_search('What is a quantum computer?')
assert len(results) > 0
await cognee.prune.prune_data()

View file

@ -62,7 +62,7 @@ async def main():
history = await cognee.get_search_history()
assert len(history) == 6, "Search history is not correct."
results = await brute_force_triplet_search('Who has the most experience with graphic design?')
results = await brute_force_triplet_search('What is a quantum computer?')
assert len(results) > 0
await cognee.prune.prune_data()

View file

@ -60,7 +60,7 @@ async def main():
history = await cognee.get_search_history()
assert len(history) == 6, "Search history is not correct."
results = await brute_force_triplet_search('Who has the most experience with graphic design?')
results = await brute_force_triplet_search('What is a quantum computer?')
assert len(results) > 0
await cognee.prune.prune_data()