summaryrefslogtreecommitdiff
path: root/spec/ruby/core/tracepoint/trace_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/tracepoint/trace_spec.rb')
-rw-r--r--spec/ruby/core/tracepoint/trace_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/tracepoint/trace_spec.rb b/spec/ruby/core/tracepoint/trace_spec.rb
index e5798df9fb..ea6c85bcc5 100644
--- a/spec/ruby/core/tracepoint/trace_spec.rb
+++ b/spec/ruby/core/tracepoint/trace_spec.rb
@@ -2,8 +2,8 @@ require_relative '../../spec_helper'
describe 'TracePoint.trace' do
it 'activates the trace automatically' do
- trace = TracePoint.trace(:call) {}
- trace.enabled?.should be_true
+ trace = TracePoint.trace(:line) {}
+ trace.enabled?.should == true
trace.disable
end
end