Skip to content

Commit b4f6526

Browse files
fix lint issue
1 parent 4b88afa commit b4f6526

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

event_reporter/utils/app_revision_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ func TestGetOperationRevisions(t *testing.T) {
553553
},
554554
})
555555
assert.Len(t, res, 1)
556-
assert.Equal(t, res[0], "Status.Sync.Revisions")
556+
assert.Equal(t, "Status.Sync.Revisions", res[0])
557557
})
558558
t.Run("should return Status.OperationState.Operation.Sync.Revisions", func(t *testing.T) {
559559
res := GetOperationRevisions(&v1alpha1.Application{
@@ -596,7 +596,7 @@ func TestGetOperationRevisions(t *testing.T) {
596596
},
597597
})
598598
assert.Len(t, res, 1)
599-
assert.Equal(t, res[0], "Operation.Sync.Revisions")
599+
assert.Equal(t, "Operation.Sync.Revisions", res[0])
600600
})
601601
}
602602

0 commit comments

Comments
 (0)