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 040de20 commit 1434c4eCopy full SHA for 1434c4e
tests/unitary/with_extras/aqua/test_deployment.py
@@ -2965,7 +2965,9 @@ def setUp(self):
2965
# Mock internal helpers to avoid real API calls
2966
self.app.get_container_config = MagicMock()
2967
self.app.get_container_image = MagicMock(return_value="docker/image:latest")
2968
- self.app.list_shapes = MagicMock(return_value=[MagicMock(name="VM.GPU.A10.1")])
+ mock_shape = MagicMock()
2969
+ mock_shape.name = "VM.GPU.A10.1"
2970
+ self.app.list_shapes = MagicMock(return_value=[mock_shape])
2971
2972
# Mock the SMM Defaults (What happens if user sends nothing)
2973
self.mock_config = MagicMock()
0 commit comments