Skip to content

Commit a1a1606

Browse files
committed
fix(tests): add callback_topic parameter to bud_cluster delete endpoint request assertions
1 parent bb37433 commit a1a1606

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/budapp/tests/test_cloud_model_delete.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ async def test_delete_regular_model_endpoint_workflow_deletion():
295295

296296
# Verify bud_cluster delete was called with expected parameters
297297
service._perform_bud_cluster_delete_endpoint_request.assert_called_once_with(
298-
cluster_id, mock_endpoint.namespace, user_id, workflow_id
298+
cluster_id, mock_endpoint.namespace, user_id, workflow_id, callback_topic=None
299299
)
300300

301301

@@ -424,5 +424,5 @@ async def test_delete_cloud_model_endpoint_with_cluster_follows_workflow():
424424

425425
# Verify bud_cluster delete was called with expected parameters
426426
service._perform_bud_cluster_delete_endpoint_request.assert_called_once_with(
427-
cluster_id, mock_endpoint.namespace, user_id, workflow_id
427+
cluster_id, mock_endpoint.namespace, user_id, workflow_id, callback_topic=None
428428
)

0 commit comments

Comments
 (0)