diff --git a/tests/handlers/api/controller/test_template.py b/tests/handlers/api/controller/test_template.py index 2aeff91f..a80d7d09 100644 --- a/tests/handlers/api/controller/test_template.py +++ b/tests/handlers/api/controller/test_template.py @@ -952,6 +952,6 @@ async def test_create_node_from_template(controller_api, controller, project): "x": 42, "y": 12 }) - mock.assert_called_with(id, x=42, y=12, compute_id=None) + mock.assert_called_with(id, x=42, y=12, name=None, compute_id=None) assert response.route == "/projects/{project_id}/templates/{template_id}" assert response.status == 201