Skip to content

Commit

Permalink
internal/want: Fix got, want ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
prashantv committed Jan 6, 2025
1 parent a13f737 commit e5796b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/want/want.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ func DeepEqual[T any](t testing.TB, msg string, got, want T) {
return
}

t.Fatalf("%s: expected DeepEqual\ngot: %v\nwant: %v", msg, want, got)
t.Fatalf("%s: expected DeepEqual\ngot: %v\nwant: %v", msg, got, want)
}

0 comments on commit e5796b8

Please sign in to comment.