diff options
author | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-07-31 13:53:35 +0000 |
---|---|---|
committer | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-07-31 13:53:35 +0000 |
commit | 0c1139ea78dfe22834d916a45c76df1634d7bbcb (patch) | |
tree | 67fee827516e4ff692da2723f79b6759a59c72f2 /test | |
parent | 7f6c69b14297bf89ec5aca5a7f057f884d180e02 (diff) |
* test/rexml/test_notationdecl_parsetest.rb: Fix typos in expected
value.
pubilc ->
public
^^
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42287 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r-- | test/rexml/test_notationdecl_parsetest.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rexml/test_notationdecl_parsetest.rb b/test/rexml/test_notationdecl_parsetest.rb index b9c4b22817..cd3576708d 100644 --- a/test/rexml/test_notationdecl_parsetest.rb +++ b/test/rexml/test_notationdecl_parsetest.rb @@ -46,14 +46,14 @@ class TestNotationDecl < Test::Unit::TestCase doctype = parse(<<-INTERNAL_SUBSET) <!NOTATION name PUBLIC 'public-id-literal' "system-literal"> INTERNAL_SUBSET - assert_equal("pubilc-id-literal", doctype.notation("name").public) + assert_equal("public-id-literal", doctype.notation("name").public) end def test_double_quote doctype = parse(<<-INTERNAL_SUBSET) <!NOTATION name PUBLIC "public-id-literal" "system-literal"> INTERNAL_SUBSET - assert_equal("pubilc-id-literal", doctype.notation("name").public) + assert_equal("public-id-literal", doctype.notation("name").public) end end |