diff options
Diffstat (limited to 'test/functional/issues_controller_test.rb')
-rw-r--r-- | test/functional/issues_controller_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 92440f573..872db7a1d 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -978,13 +978,13 @@ class IssuesControllerTest < Redmine::ControllerTest get :index, :params => {:sort => "spent_hours:desc", :c => ['subject','spent_hours']} assert_response :success - assert_equal [4.0, 3.0, 0.0], issues_in_list.map(&:spent_hours)[0..2] + assert_equal ['4.00', '3.00', '0.00'], columns_values_in_list('spent_hours')[0..2] Project.find(3).disable_module!(:time_tracking) get :index, :params => {:sort => "spent_hours:desc", :c => ['subject','spent_hours']} assert_response :success - assert_equal [3.0, 0.0, 0.0], issues_in_list.map(&:spent_hours)[0..2] + assert_equal ['3.00', '0.00', '0.00'], columns_values_in_list('spent_hours')[0..2] end def test_index_sort_by_total_spent_hours |