Skip to content

Commit 626c9c1

Browse files
committed
minor fix
Signed-off-by: Britania Rodriguez Reyes <britaniar@microsoft.com>
1 parent 1ac543c commit 626c9c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/controllers/updaterun/stop_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,10 @@ func TestStopUpdatingStage(t *testing.T) {
227227
string(placementv1beta1.StageUpdatingConditionProgressing),
228228
)
229229
if progressingCond == nil {
230-
t.Errorf("stopDeleteStage() missing progressing condition")
230+
t.Errorf("stopUpdatingStage() missing progressing condition")
231231
} else {
232232
if diff := cmp.Diff(tt.wantProgressCond, *progressingCond, cmpOptions...); diff != "" {
233-
t.Errorf("status mismatch: (-want +got):\n%s", diff)
233+
t.Errorf("stopUpdatingStage() status mismatch: (-want +got):\n%s", diff)
234234
}
235235
}
236236
})
@@ -503,7 +503,7 @@ func TestStopDeleteStage(t *testing.T) {
503503
t.Errorf("stopDeleteStage() missing progressing condition")
504504
} else {
505505
if diff := cmp.Diff(tt.wantProgressCond, *progressingCond, cmpOptions...); diff != "" {
506-
t.Errorf("status mismatch: (-want +got):\n%s", diff)
506+
t.Errorf("stopDeleteStage()status mismatch: (-want +got):\n%s", diff)
507507
}
508508
}
509509
})

0 commit comments

Comments
 (0)