summaryrefslogtreecommitdiff
path: root/test/-ext-
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-03-20 08:39:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-03-20 08:39:17 +0000
commit30fdcc3fa867d6a71b2571770424ac573a27972b (patch)
treecad92b423970fd7e0e7d0e2197c5deb2b8502301 /test/-ext-
parent8575de71d40b90d33c89bf3d3420824d509da7c5 (diff)
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
Diffstat (limited to 'test/-ext-')
-rw-r--r--test/-ext-/symbol/test_inadvertent_creation.rb8
1 files 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