We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b88afa commit b4f6526Copy full SHA for b4f6526
event_reporter/utils/app_revision_test.go
@@ -553,7 +553,7 @@ func TestGetOperationRevisions(t *testing.T) {
553
},
554
})
555
assert.Len(t, res, 1)
556
- assert.Equal(t, res[0], "Status.Sync.Revisions")
+ assert.Equal(t, "Status.Sync.Revisions", res[0])
557
558
t.Run("should return Status.OperationState.Operation.Sync.Revisions", func(t *testing.T) {
559
res := GetOperationRevisions(&v1alpha1.Application{
@@ -596,7 +596,7 @@ func TestGetOperationRevisions(t *testing.T) {
596
597
598
599
- assert.Equal(t, res[0], "Operation.Sync.Revisions")
+ assert.Equal(t, "Operation.Sync.Revisions", res[0])
600
601
}
602
0 commit comments