Skip to content

Commit

Permalink
Address lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Per Goncalves da Silva <pegoncal@redhat.com>
  • Loading branch information
Per Goncalves da Silva committed Jan 9, 2025
1 parent 93bc027 commit 641149a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/annotation/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ func makeCreateEventFor(obj client.Object) event.CreateEvent {
return e
}

func makeUpdateEventFor(old, new client.Object) event.UpdateEvent {
func makeUpdateEventFor(oldObj, newObj client.Object) event.UpdateEvent {
var e event.UpdateEvent
e.ObjectOld = old
e.ObjectNew = new
e.ObjectOld = oldObj
e.ObjectNew = newObj
return e
}

Expand Down

0 comments on commit 641149a

Please # to comment.