We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7a5b33 commit bc0c829Copy full SHA for bc0c829
e2e/e2e.rb
@@ -86,9 +86,12 @@ def assert_data
86
end
87
(0..csv_data.length).each do |i|
88
result.next()
89
+ puts "Item #{i}"
90
(0..@column_count).each do |j|
- 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)}"
93
94
+ puts ""
95
96
return
97
0 commit comments