summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/rexml/test_notationdecl_parsetest.rb4
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