ruby-changes:37954
From: nobu <ko1@a...>
Date: Fri, 20 Mar 2015 17:39:37 +0900 (JST)
Subject: [ruby-changes:37954] nobu:r50035 (trunk): test_inadvertent_creation.rb: fix messages
nobu 2015-03-20 17:39:17 +0900 (Fri, 20 Mar 2015) New Revision: 50035 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=50035 Log: test_inadvertent_creation.rb: fix messages * test/-ext-/symbol/test_inadvertent_creation.rb (TestInadvertent): fix failure messages. Modified files: trunk/test/-ext-/symbol/test_inadvertent_creation.rb Index: test/-ext-/symbol/test_inadvertent_creation.rb =================================================================== --- test/-ext-/symbol/test_inadvertent_creation.rb (revision 50034) +++ test/-ext-/symbol/test_inadvertent_creation.rb (revision 50035) @@ -85,7 +85,7 @@ module Test_Symbol https://github.com/ruby/ruby/blob/trunk/test/-ext-/symbol/test_inadvertent_creation.rb#L85 Feature5079 = '[ruby-core:38404]' def test_undefined_instance_variable - feature5079 = feature5079 + feature5079 = Feature5079 c = Class.new iv = noninterned_name("@") @@ -94,7 +94,7 @@ module Test_Symbol https://github.com/ruby/ruby/blob/trunk/test/-ext-/symbol/test_inadvertent_creation.rb#L94 end def test_undefined_class_variable - feature5079 = feature5079 + feature5079 = Feature5079 c = Class.new cv = noninterned_name("@@") @@ -104,7 +104,7 @@ module Test_Symbol https://github.com/ruby/ruby/blob/trunk/test/-ext-/symbol/test_inadvertent_creation.rb#L104 def test_undefined_const - feature5079 = feature5079 + feature5079 = Feature5079 c = Class.new s = noninterned_name("A") @@ -112,7 +112,7 @@ module Test_Symbol https://github.com/ruby/ruby/blob/trunk/test/-ext-/symbol/test_inadvertent_creation.rb#L112 end def test_undefined_method - feature5079 = feature5079 + feature5079 = Feature5079 c = Class.new s = noninterned_name -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/