aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionpack/test/controller/assert_select_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/controller/assert_select_test.rb b/actionpack/test/controller/assert_select_test.rb
index f07d201563..5e16f6d0c2 100644
--- a/actionpack/test/controller/assert_select_test.rb
+++ b/actionpack/test/controller/assert_select_test.rb
@@ -232,9 +232,9 @@ class AssertSelectTest < ActionController::TestCase
end
end
- def test_elect_with_xml_namespace_attributes
+ def test_select_with_xml_namespace_attributes
render_html %Q{<link xlink:href="http://nowhere.com"></link>}
- assert_nothing_raised { assert_select "link[xlink:href=http://nowhere.com]" }
+ assert_nothing_raised { assert_select %(link[xlink:href="http://nowhere.com"]) }
end
#