File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -120,8 +120,8 @@ func TestJobs(t *testing.T) {
120
120
status , percent , err = c .JobStatus (* jobID , & volume )
121
121
assert .True (t , (percent >= 0 && percent <= 100 ))
122
122
assert .Nil (t , err )
123
- assert .True (t , status == lsm .JobStatusInprogress || status == lsm .JobStatusComplete )
124
- if status != lsm .JobStatusInprogress {
123
+ assert .True (t , status == lsm .JobStatusInProgress || status == lsm .JobStatusComplete )
124
+ if status != lsm .JobStatusInProgress {
125
125
break
126
126
}
127
127
}
@@ -1365,7 +1365,7 @@ func TestSystemModeType(t *testing.T) {
1365
1365
}
1366
1366
1367
1367
func TestJobStatusType (t * testing.T ) {
1368
- assert .Equal (t , lsm .JobStatusType (1 ), lsm .JobStatusInprogress )
1368
+ assert .Equal (t , lsm .JobStatusType (1 ), lsm .JobStatusInProgress )
1369
1369
assert .Equal (t , lsm .JobStatusType (3 ), lsm .JobStatusError )
1370
1370
}
1371
1371
You can’t perform that action at this time.
0 commit comments