Skip to content

Commit

Permalink
fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cor committed Jan 2, 2025
1 parent 422bdb3 commit da955f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion go/libraries/doltcore/merge/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ func TestMerge(t *testing.T) {

require.Equal(t, len(test.expected), len(actRows))
for i := range test.expected {
assert.Equal(t, test.expected[i], actRows[i])
for j := range test.expected[i] {
assert.Equal(t, test.expected[i][j], actRows[i].GetValue(j))
}
}
})
}
Expand Down

0 comments on commit da955f5

Please sign in to comment.