Fixing tests

This commit is contained in:
Cyber MacGeddon 2025-09-30 14:41:35 +01:00
parent 09b5167c50
commit d51b1ff7ba
2 changed files with 8 additions and 8 deletions

View file

@ -197,7 +197,7 @@ class TestFalkorDBStorageProcessor:
# Mock collection_exists to bypass validation in unit tests # Mock collection_exists to bypass validation in unit tests
with patch.object(processor, \'collection_exists\', return_value=True): with patch.object(processor, 'collection_exists', return_value=True):
await processor.store_triples(message) await processor.store_triples(message)
@ -234,7 +234,7 @@ class TestFalkorDBStorageProcessor:
# Mock collection_exists to bypass validation in unit tests # Mock collection_exists to bypass validation in unit tests
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(mock_message)
@ -288,7 +288,7 @@ class TestFalkorDBStorageProcessor:
# Mock collection_exists to bypass validation in unit tests # Mock collection_exists to bypass validation in unit tests
with patch.object(processor, \'collection_exists\', return_value=True): with patch.object(processor, 'collection_exists', return_value=True):
await processor.store_triples(message) await processor.store_triples(message)
@ -320,7 +320,7 @@ class TestFalkorDBStorageProcessor:
# Mock collection_exists to bypass validation in unit tests # Mock collection_exists to bypass validation in unit tests
with patch.object(processor, \'collection_exists\', return_value=True): with patch.object(processor, 'collection_exists', return_value=True):
await processor.store_triples(message) await processor.store_triples(message)
@ -356,7 +356,7 @@ class TestFalkorDBStorageProcessor:
# Mock collection_exists to bypass validation in unit tests # Mock collection_exists to bypass validation in unit tests
with patch.object(processor, \'collection_exists\', return_value=True): with patch.object(processor, 'collection_exists', return_value=True):
await processor.store_triples(message) await processor.store_triples(message)

View file

@ -311,7 +311,7 @@ class TestMemgraphStorageProcessor:
# Mock collection_exists to bypass validation in unit tests # Mock collection_exists to bypass validation in unit tests
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(mock_message)
@ -361,7 +361,7 @@ class TestMemgraphStorageProcessor:
# Mock collection_exists to bypass validation in unit tests # Mock collection_exists to bypass validation in unit tests
with patch.object(processor, \'collection_exists\', return_value=True): with patch.object(processor, 'collection_exists', return_value=True):
await processor.store_triples(message) await processor.store_triples(message)
@ -396,7 +396,7 @@ class TestMemgraphStorageProcessor:
# Mock collection_exists to bypass validation in unit tests # Mock collection_exists to bypass validation in unit tests
with patch.object(processor, \'collection_exists\', return_value=True): with patch.object(processor, 'collection_exists', return_value=True):
await processor.store_triples(message) await processor.store_triples(message)