Fixing tests

This commit is contained in:
Cyber MacGeddon 2026-04-21 11:30:07 +01:00
parent 1c6e893a90
commit ecb5a6feb1
2 changed files with 4 additions and 4 deletions

View file

@ -235,7 +235,7 @@ class TestFalkorDBStorageProcessor:
with patch.object(processor, 'collection_exists', return_value=True): with patch.object(processor, 'collection_exists', return_value=True):
await processor.store_triples(mock_message) await processor.store_triples('test_workspace', mock_message)
# Verify queries were called in the correct order # Verify queries were called in the correct order
expected_calls = [ expected_calls = [

View file

@ -313,7 +313,7 @@ class TestMemgraphStorageProcessor:
with patch.object(processor, 'collection_exists', return_value=True): with patch.object(processor, 'collection_exists', return_value=True):
await processor.store_triples(mock_message) await processor.store_triples('test_workspace', mock_message)
# Verify execute_query was called for create_node, create_literal, and relate_literal # Verify execute_query was called for create_node, create_literal, and relate_literal
# (since mock_message has a literal object) # (since mock_message has a literal object)