From 21dc2a8dbc5ac51cb4857d142e1cfc03a140a31d Mon Sep 17 00:00:00 2001 From: grossmj Date: Fri, 2 Jun 2023 20:25:33 +0930 Subject: [PATCH] Fix tests --- tests/handlers/api/controller/test_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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