[前][次][番号順一覧][スレッド一覧]

ruby-changes:30235

From: kou <ko1@a...>
Date: Wed, 31 Jul 2013 22:53:46 +0900 (JST)
Subject: [ruby-changes:30235] kou:r42287 (trunk): * test/rexml/test_notationdecl_parsetest.rb: Fix typos in expected

kou	2013-07-31 22:53:35 +0900 (Wed, 31 Jul 2013)

  New Revision: 42287

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=42287

  Log:
    * test/rexml/test_notationdecl_parsetest.rb: Fix typos in expected
      value.
      pubilc ->
      public
         ^^

  Modified files:
    trunk/ChangeLog
    trunk/test/rexml/test_notationdecl_parsetest.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 42286)
+++ ChangeLog	(revision 42287)
@@ -1,3 +1,11 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Wed Jul 31 22:52:55 2013  Kouhei Sutou  <kou@c...>
+
+	* test/rexml/test_notationdecl_parsetest.rb: Fix typos in expected
+	  value.
+	  pubilc ->
+	  public
+	     ^^
+
 Wed Jul 31 22:50:51 2013  Kouhei Sutou  <kou@c...>
 
 	* test/rexml/test_notationdecl_parsetest.rb: Add tests that focus
Index: test/rexml/test_notationdecl_parsetest.rb
===================================================================
--- test/rexml/test_notationdecl_parsetest.rb	(revision 42286)
+++ test/rexml/test_notationdecl_parsetest.rb	(revision 42287)
@@ -46,14 +46,14 @@ class TestNotationDecl < Test::Unit::Tes https://github.com/ruby/ruby/blob/trunk/test/rexml/test_notationdecl_parsetest.rb#L46
           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
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]