##// END OF EJS Templates
Fixed test failure with MySQL introduced by r13467....
Jean-Philippe Lang -
r13087:b01c74098055
parent child
Show More
@@ -1229,7 +1229,7 class Issue < ActiveRecord::Base
1229 count.
1229 count.
1230 map do |columns, total|
1230 map do |columns, total|
1231 status_id, is_closed, field_value = columns
1231 status_id, is_closed, field_value = columns
1232 is_closed = ['t', 'true', true].include?(is_closed)
1232 is_closed = ['t', 'true', '1'].include?(is_closed.to_s)
1233 {
1233 {
1234 "status_id" => status_id.to_s,
1234 "status_id" => status_id.to_s,
1235 "closed" => is_closed,
1235 "closed" => is_closed,
General Comments 0
You need to be logged in to leave comments. Login now