Skip to content

Commit

Permalink
wip - fix spec
Browse files Browse the repository at this point in the history
  • Loading branch information
solnic committed Aug 16, 2024
1 parent 7dc0424 commit 611bb11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry-ruby/spec/sentry/rack/capture_exceptions_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ def will_be_sampled_by_sdk
expect(profile[:transaction][:id]).to eq(event.event_id)
expect(profile[:transaction][:name]).to eq(event.transaction)
expect(profile[:transaction][:trace_id]).to eq(event.contexts[:trace][:trace_id])
expect(profile[:transaction][:active_thread_id]).to eq(Thread.current.object_id)
expect(profile[:transaction][:active_thread_id]).to eq(Thread.current.object_id.to_s)

# detailed checking of content is done in profiler_spec,
# just check basic structure here
Expand Down

0 comments on commit 611bb11

Please sign in to comment.