From 30fdcc3fa867d6a71b2571770424ac573a27972b Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 20 Mar 2015 08:39:17 +0000 Subject: [PATCH] test_inadvertent_creation.rb: fix messages * test/-ext-/symbol/test_inadvertent_creation.rb (TestInadvertent): fix failure messages. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/-ext-/symbol/test_inadvertent_creation.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/-ext-/symbol/test_inadvertent_creation.rb b/test/-ext-/symbol/test_inadvertent_creation.rb index f6cfe65e85..081debdd29 100644 --- a/test/-ext-/symbol/test_inadvertent_creation.rb +++ b/test/-ext-/symbol/test_inadvertent_creation.rb @@ -85,7 +85,7 @@ module Test_Symbol 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 end def test_undefined_class_variable - feature5079 = feature5079 + feature5079 = Feature5079 c = Class.new cv = noninterned_name("@@") @@ -104,7 +104,7 @@ module Test_Symbol def test_undefined_const - feature5079 = feature5079 + feature5079 = Feature5079 c = Class.new s = noninterned_name("A") @@ -112,7 +112,7 @@ module Test_Symbol end def test_undefined_method - feature5079 = feature5079 + feature5079 = Feature5079 c = Class.new s = noninterned_name