summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/-ext-/debug/test_profile_frames.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/-ext-/debug/test_profile_frames.rb b/test/-ext-/debug/test_profile_frames.rb
index 05e4706eb6..854f3bc2db 100644
--- a/test/-ext-/debug/test_profile_frames.rb
+++ b/test/-ext-/debug/test_profile_frames.rb
@@ -1,7 +1,7 @@
require 'test/unit'
require '-test-/debug'
-class C
+class SampleClassForTestProfileFrames
def self.bar(block)
block.call
end
@@ -14,7 +14,7 @@ end
class TestProfileFrames < Test::Unit::TestCase
def test_profile_frames
frames = Fiber.new{
- Fiber.yield C.new.foo(lambda{ Bug::Debug.profile_frames(0, 10) })
+ Fiber.yield SampleClassForTestProfileFrames.new.foo(lambda{ Bug::Debug.profile_frames(0, 10) })
}.resume
assert_equal(4, frames.size)
@@ -33,8 +33,8 @@ class TestProfileFrames < Test::Unit::TestCase
]
classes = [
TestProfileFrames,
- C, # singleton method
- C,
+ SampleClassForTestProfileFrames, # singleton method
+ SampleClassForTestProfileFrames,
TestProfileFrames,
]
singleton_method_p = [