diff options
-rw-r--r-- | test/functional/context_menus_controller_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/context_menus_controller_test.rb b/test/functional/context_menus_controller_test.rb index 5e5cf4ba3..9d20b1152 100644 --- a/test/functional/context_menus_controller_test.rb +++ b/test/functional/context_menus_controller_test.rb @@ -53,7 +53,7 @@ class ContextMenusControllerTest < ActionController::TestCase :attributes => { :href => '/issues/move/new?ids%5B%5D=1', :class => 'icon-move' } assert_tag :tag => 'a', :content => 'Delete', - :attributes => { :href => '/issues/destroy?ids%5B%5D=1', + :attributes => { :href => '/issues?ids%5B%5D=1', :class => 'icon-del' } end @@ -94,7 +94,7 @@ class ContextMenusControllerTest < ActionController::TestCase :attributes => { :href => "/issues/move/new?#{ids}", :class => 'icon-move' } assert_tag :tag => 'a', :content => 'Delete', - :attributes => { :href => "/issues/destroy?#{ids}", + :attributes => { :href => "/issues?#{ids}", :class => 'icon-del' } end @@ -120,7 +120,7 @@ class ContextMenusControllerTest < ActionController::TestCase :attributes => { :href => "/issues/bulk_edit?#{ids}&issue%5Bassigned_to_id%5D=2", :class => '' } assert_tag :tag => 'a', :content => 'Delete', - :attributes => { :href => "/issues/destroy?#{ids}", + :attributes => { :href => "/issues?#{ids}", :class => 'icon-del' } end |