diff options
Diffstat (limited to 'test/functional/admin_controller_test.rb')
-rw-r--r-- | test/functional/admin_controller_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/admin_controller_test.rb b/test/functional/admin_controller_test.rb index a87c92b74..d5c115069 100644 --- a/test/functional/admin_controller_test.rb +++ b/test/functional/admin_controller_test.rb @@ -129,7 +129,7 @@ class AdminControllerTest < ActionController::TestCase assert_select 'tr#plugin-foo' do assert_select 'td span.name', :text => 'Foo plugin' - assert_select 'td.configure a[href=/settings/plugin/foo]' + assert_select 'td.configure a[href="/settings/plugin/foo"]' end assert_select 'tr#plugin-bar' do assert_select 'td span.name', :text => 'Bar' @@ -150,7 +150,7 @@ class AdminControllerTest < ActionController::TestCase get :index assert_response :success - assert_select 'div#admin-menu a[href=/foo/bar]', :text => 'Test' + assert_select 'div#admin-menu a[href="/foo/bar"]', :text => 'Test' Redmine::MenuManager.map :admin_menu do |menu| menu.delete :test_admin_menu_plugin_extension |