diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-11-16 10:25:45 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-11-16 10:25:45 +0000 |
commit | 131184e99a43b0aa0c8d811df32c9ca4f028e0b6 (patch) | |
tree | 2d18ae021cd19d761585677c686be1ba8d9d0eb7 /test | |
parent | 6cea1fa267524cc89da24ce7cf44ab142e531251 (diff) | |
download | redmine-131184e99a43b0aa0c8d811df32c9ca4f028e0b6.tar.gz redmine-131184e99a43b0aa0c8d811df32c9ca4f028e0b6.zip |
Reverts r19064 (#32436).
git-svn-id: http://svn.redmine.org/redmine/branches/4.1-stable@19078 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/timelog_controller_test.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/functional/timelog_controller_test.rb b/test/functional/timelog_controller_test.rb index 9c0b958b9..f23a10c10 100644 --- a/test/functional/timelog_controller_test.rb +++ b/test/functional/timelog_controller_test.rb @@ -1418,18 +1418,4 @@ class TimelogControllerTest < Redmine::ControllerTest assert_select '+ span.count', :text => '2' end end - - def test_index_grouped_by_issue - get :index, :params => { - :set_filter => 1, - :group_by => 'issue' - } - assert_response :success - - assert_select 'tr.group span.name' do |elements| - target_element = elements[1] - assert_equal "Bug #1: Cannot print recipes", target_element.text - assert_select target_element, '+ span.count', :text => '2' - end - end end |