aboutsummaryrefslogtreecommitdiffstats
path: root/test/-ext-
diff options
context:
space:
mode:
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