Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ocp_resources/virtual_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ def wait_for_status(self, status, timeout=TIMEOUT_4MINUTES, sleep=1):
# VM status should be taken from spec.status.ready
return

def wait_for_status_ready(self, status, timeout=TIMEOUT_4MINUTES, sleep=1):
def wait_for_ready_status(self, status, timeout=TIMEOUT_4MINUTES, sleep=1):
"""
Wait for resource to be in status ready
Wait for VM resource ready status to be at desire status

Args:
status: Expected status: True for a running VM, None for a stopped VM.
Expand Down