Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
VukW committed Feb 12, 2024
1 parent ad45a04 commit a46cf0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/medperf/tests/entities/test_cube.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ def test_download_run_files_without_image_configures_mlcube(
)
spy = mocker.spy(medperf.entities.cube.pexpect, "spawn")
expected_cmds = [
f"mlcube configure --mlcube={self.manifest_path} --platform={config.platform}",
f"mlcube inspect --mlcube={self.manifest_path}"
f"mlcube --log-level debug configure --mlcube={self.manifest_path} --platform={config.platform}",
f"mlcube --log-level debug inspect --mlcube={self.manifest_path}"
f" --format=yaml --platform={config.platform} --output-file {tmp_path}",
]
expected_cmds = [call(cmd, timeout=None) for cmd in expected_cmds]
Expand Down

0 comments on commit a46cf0a

Please sign in to comment.