summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_settracefunc.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_settracefunc.rb b/test/ruby/test_settracefunc.rb
index 8fcd043124..2ada093f8d 100644
--- a/test/ruby/test_settracefunc.rb
+++ b/test/ruby/test_settracefunc.rb
@@ -2089,8 +2089,8 @@ class TestSetTraceFunc < Test::Unit::TestCase
events = []
tp = TracePoint.new(:script_compiled){|tp|
next unless target_thread?
- events << [tp.compiled_instruction_sequence.path,
- tp.compiled_eval_script]
+ events << [tp.instruction_sequence.path,
+ tp.eval_script]
}
eval_script = 'a = 1'