mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-22 11:41:02 +02:00
Rev gateway tests
This commit is contained in:
parent
808cdfa64d
commit
57bea86e18
2 changed files with 4 additions and 14 deletions
|
|
@ -51,9 +51,9 @@ class TestConfigRequestor:
|
|||
# Setup translator response
|
||||
mock_request_translator.to_pulsar.return_value = "translated_request"
|
||||
|
||||
# Temporarily patch ServiceRequestor async methods to prevent coroutine warnings
|
||||
with patch.object(ServiceRequestor, 'start', new_callable=AsyncMock), \
|
||||
patch.object(ServiceRequestor, 'process', new_callable=AsyncMock):
|
||||
# Patch ServiceRequestor async methods with regular mocks (not AsyncMock)
|
||||
with patch.object(ServiceRequestor, 'start', return_value=None), \
|
||||
patch.object(ServiceRequestor, 'process', return_value=None):
|
||||
requestor = ConfigRequestor(
|
||||
pulsar_client=MagicMock(),
|
||||
consumer="test-consumer",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue