We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 156421a commit eb1a9b4Copy full SHA for eb1a9b4
tests/unit/test_sea_backend.py
@@ -354,7 +354,11 @@ def test_command_execution_advanced(
354
"status": {"state": "SUCCEEDED"},
355
}
356
mock_http_client._make_request.return_value = execute_response
357
- param = {"name": "param1", "value": "value1", "type": "STRING"}
+ param = Mock()
358
+ param.name = "param1"
359
+ param.value = Mock()
360
+ param.value.stringValue = "value1"
361
+ param.type = "STRING"
362
363
with patch.object(sea_client, "get_execution_result"):
364
sea_client.execute_command(
0 commit comments