summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-31 13:53:35 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-31 13:53:35 +0000
commit0c1139ea78dfe22834d916a45c76df1634d7bbcb (patch)
tree67fee827516e4ff692da2723f79b6759a59c72f2
parent7f6c69b14297bf89ec5aca5a7f057f884d180e02 (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
-rw-r--r--ChangeLog8
-rw-r--r--test/rexml/test_notationdecl_parsetest.rb4
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 423bcbbeb3..da94a95947 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Wed Jul 31 22:52:55 2013 Kouhei Sutou <kou@cozmixng.org>
+
+ * test/rexml/test_notationdecl_parsetest.rb: Fix typos in expected
+ value.
+ pubilc ->
+ public
+ ^^
+
Wed Jul 31 22:50:51 2013 Kouhei Sutou <kou@cozmixng.org>
* test/rexml/test_notationdecl_parsetest.rb: Add tests that focus
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