Skip to content

Commit

Permalink
cex: lint query_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
rorycl committed Jun 21, 2024
1 parent 212f313 commit 0e1b048
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func TestStoreSimplifier(t *testing.T) {
} {
t.Run(fmt.Sprintf("subtest_%d", i), func(t *testing.T) {
if got, want := storeSimplifier(tt.provided), tt.want; slices.Compare(got, want) != 0 {
fmt.Errorf("got %v want %v", got, want)
t.Errorf("got %v want %v", got, want)
}
})
}
Expand Down

0 comments on commit 0e1b048

Please sign in to comment.