Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 Bump to go1.23 #195

Merged
merged 5 commits into from
Jan 13, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Address lint errors
Signed-off-by: Per Goncalves da Silva <pegoncal@redhat.com>
  • Loading branch information
Per Goncalves da Silva committed Jan 9, 2025
commit 641149a0d68c7e9e7e84f94278ac76775673a681
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
Loading