Skip to content

Commit aaf689f

Browse files
author
Andrei Neagu
committed
fix issue
1 parent a5e3055 commit aaf689f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

services/dynamic-sidecar/tests/unit/test_modules_notifier.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ async def test_notifier_publish_disk_usage(
217217
jsonable_encoder(ServiceDiskUsage(node_id=node_id, usage=usage))
218218
)
219219

220-
await _assert_call_count(server_disconnect, call_count=_NUMBER_OF_CLIENTS)
220+
await _assert_call_count(server_disconnect, call_count=_NUMBER_OF_CLIENTS * 2)
221221

222222

223223
@pytest.fixture
@@ -311,7 +311,7 @@ async def test_notifier_send_input_port_status(
311311
)
312312
)
313313

314-
await _assert_call_count(server_disconnect, call_count=_NUMBER_OF_CLIENTS)
314+
await _assert_call_count(server_disconnect, call_count=_NUMBER_OF_CLIENTS * 2)
315315

316316

317317
def _get_on_output_port_spy(
@@ -400,4 +400,4 @@ async def test_notifier_send_output_port_status(
400400
)
401401
)
402402

403-
await _assert_call_count(server_disconnect, call_count=_NUMBER_OF_CLIENTS)
403+
await _assert_call_count(server_disconnect, call_count=_NUMBER_OF_CLIENTS * 2)

0 commit comments

Comments
 (0)