From 80896fdcc59583a2134b64f51c60dd70f5d83188 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Thu, 10 Jul 2025 22:10:08 +0200 Subject: [PATCH] test: Fix deduplication test --- cognee/tests/test_deduplication.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cognee/tests/test_deduplication.py b/cognee/tests/test_deduplication.py index 5eaccd377..990039bfd 100644 --- a/cognee/tests/test_deduplication.py +++ b/cognee/tests/test_deduplication.py @@ -25,8 +25,8 @@ async def test_deduplication(): explanation_file_path2 = os.path.join( pathlib.Path(__file__).parent, "test_data/Natural_language_processing_copy.txt" ) - await cognee.add([explanation_file_path], dataset_name) - await cognee.add([explanation_file_path2], dataset_name2) + await cognee.add([explanation_file_path], dataset_name, incremental_loading=False) + await cognee.add([explanation_file_path2], dataset_name2, incremental_loading=False) result = await relational_engine.get_all_data_from_table("data") assert len(result) == 1, "More than one data entity was found."