diff options
author | Timm <kaspth@gmail.com> | 2013-07-24 13:01:21 +0200 |
---|---|---|
committer | Timm <kaspth@gmail.com> | 2014-06-15 23:41:08 +0200 |
commit | e4772cc71edd13f0e3637c70b59fd6e8665e18ad (patch) | |
tree | dc7a845fd68f9c8f5a753ff213c85e8c6ea46887 /actionpack | |
parent | 1bc34386cf8c10d69a637527a24d884822326924 (diff) | |
download | rails-e4772cc71edd13f0e3637c70b59fd6e8665e18ad.tar.gz rails-e4772cc71edd13f0e3637c70b59fd6e8665e18ad.tar.bz2 rails-e4772cc71edd13f0e3637c70b59fd6e8665e18ad.zip |
Fixed typo in method name. Fixed Nokogiri::CSS::SyntaxError.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/assert_select_test.rb | 4 |
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 # |