Skip to content

Commit bc0c829

Browse files
committed
debug
1 parent d7a5b33 commit bc0c829

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

e2e/e2e.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,12 @@ def assert_data
8686
end
8787
(0..csv_data.length).each do |i|
8888
result.next()
89+
puts "Item #{i}"
8990
(0..@column_count).each do |j|
90-
raise "Wrong data in row #{i}, col #{j} - expected #{csv_data[i][j]}, got #{result.getString(j)}" unless csv_data[i][j] == result.getString(j)
91+
print "csv[#{j}] = #{csv_data[i][j]}"
92+
print "result[#{j}] = #{result.getString(j)}"
9193
end
94+
puts ""
9295
end
9396
return
9497

0 commit comments

Comments
 (0)