From b3853f7454f1f0f127ac0de509af5529ff69cf41 Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Fri, 29 Aug 2025 18:40:18 +0200 Subject: [PATCH] fix: fixes asserts --- cognee/tests/test_temporal_graph.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cognee/tests/test_temporal_graph.py b/cognee/tests/test_temporal_graph.py index ff52d2ed1..8ab76bf28 100644 --- a/cognee/tests/test_temporal_graph.py +++ b/cognee/tests/test_temporal_graph.py @@ -122,19 +122,19 @@ async def main(): f"Expected multiple 'is_a' edge, but found {edge_type_counts.get('is_a', 0)}" ) - assert (edge_type_counts.get("during", 0) == type_counts.get("Interval", 0))( + assert (edge_type_counts.get("during", 0) == type_counts.get("Interval", 0)), ( "Expected the same amount of during and interval objects in the graph" ) - assert (edge_type_counts.get("during", 0) == type_counts.get("Interval", 0))( + assert (edge_type_counts.get("during", 0) == type_counts.get("Interval", 0)), ( "Expected the same amount of during and interval objects in the graph" ) - assert (edge_type_counts.get("time_from", 0) == type_counts.get("Interval", 0))( + assert (edge_type_counts.get("time_from", 0) == type_counts.get("Interval", 0)), ( "Expected the same amount of time_from and interval objects in the graph" ) - assert (edge_type_counts.get("time_to", 0) == type_counts.get("Interval", 0))( + assert (edge_type_counts.get("time_to", 0) == type_counts.get("Interval", 0)), ( "Expected the same amount of time_to and interval objects in the graph" )