diff --git a/internal/redfishwrapper/task_test.go b/internal/redfishwrapper/task_test.go index 43aa5d26..d34077a7 100644 --- a/internal/redfishwrapper/task_test.go +++ b/internal/redfishwrapper/task_test.go @@ -21,10 +21,10 @@ func TestConvertTaskState(t *testing.T) { {"starting state", "starting", constants.Initializing}, {"downloading state", "downloading", constants.Initializing}, {"downloaded state", "downloaded", constants.Initializing}, + {"scheduling state", "scheduling", constants.Initializing}, {"running state", "running", constants.Running}, {"stopping state", "stopping", constants.Running}, {"cancelling state", "cancelling", constants.Running}, - {"scheduling state", "scheduling", constants.Running}, {"pending state", "pending", constants.Queued}, {"new state", "new", constants.Queued}, {"scheduled state", "scheduled", constants.PowerCycleHost},