Skip to content

Commit

Permalink
Fix unit test TestConvertTaskState
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeefreak101 committed Dec 18, 2023
1 parent 3456070 commit 1e2d807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/redfishwrapper/task_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand Down

0 comments on commit 1e2d807

Please sign in to comment.