Skip to content

Commit

Permalink
fix another test
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cor committed Jan 2, 2025
1 parent da955f5 commit 38ef12a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20250,7 +20250,7 @@ func assertResultRowsEqual(t *testing.T, expected, actual []sql.Row) {
numErrors++
continue
}
if !assert.Equal(t, expected[i], actual[i]) {
if !assert.Equal(t, expected[i].Values(), actual[i].Values()) {
numErrors++
}
}
Expand Down

0 comments on commit 38ef12a

Please sign in to comment.