File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ def assert_data
7575 max_timeout = 10
7676 csv_data = CSV . read ( @csv_file )
7777
78- ( 0 ..max_timeout ) . each do |_ |
78+ ( 0 ... max_timeout ) . each do |_ |
7979 begin
8080 sleep ( 5 )
8181 query = @query_client . execute ( @database , @table )
@@ -84,12 +84,12 @@ def assert_data
8484 rescue Exception => e
8585 puts "Error: #{ e } "
8686 end
87- ( 0 ..csv_data . length ) . each do |i |
87+ ( 0 ... csv_data . length ) . each do |i |
8888 result . next ( )
8989 puts "Item #{ i } "
90- ( 0 ..@column_count ) . each do |j |
91- print " csv[#{ j } ] = #{ csv_data [ i ] [ j ] } "
92- print " result[#{ j } ] = #{ result . getString ( j ) } "
90+ ( 0 ... @column_count ) . each do |j |
91+ puts " csv[#{ j } ] = #{ csv_data [ i ] [ j ] } "
92+ puts " result[#{ j } ] = #{ result . getString ( j ) } "
9393 end
9494 puts ""
9595 end
You can’t perform that action at this time.
0 commit comments