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
This commit is contained in:
nobu 2015-03-20 08:39:17 +00:00
Родитель 8575de71d4
Коммит 30fdcc3fa8
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -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