refactor: Update test

This commit is contained in:
Igor Ilic 2025-12-12 19:29:56 +01:00
parent 039866397b
commit cc72e7fd76

View file

@ -62,12 +62,8 @@ async def main():
await delete_dataset(dataset)
# Confirm databases have been deleted
assert not os.path.exists(
os.path.join(cognee_directory_path, "databases", str(user.id), str(val))
), "Graph database file not found."
assert not os.path.exists(
os.path.join(cognee_directory_path, "databases", str(user.id), str(val))
), "Vector database file not found."
assert not os.path.exists(graph_db_path), "Graph database file found."
assert not os.path.exists(vector_db_path), "Vector database file found."
if __name__ == "__main__":