aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorTimm <kaspth@gmail.com>2013-07-24 13:01:21 +0200
committerTimm <kaspth@gmail.com>2014-06-15 23:41:08 +0200
commite4772cc71edd13f0e3637c70b59fd6e8665e18ad (patch)
treedc7a845fd68f9c8f5a753ff213c85e8c6ea46887 /actionpack/test
parent1bc34386cf8c10d69a637527a24d884822326924 (diff)
downloadrails-e4772cc71edd13f0e3637c70b59fd6e8665e18ad.tar.gz
rails-e4772cc71edd13f0e3637c70b59fd6e8665e18ad.tar.bz2
rails-e4772cc71edd13f0e3637c70b59fd6e8665e18ad.zip
Fixed typo in method name. Fixed Nokogiri::CSS::SyntaxError.
Diffstat (limited to 'actionpack/test')
-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
#