aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/thread/value_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/thread/value_spec.rb')
-rw-r--r--spec/ruby/core/thread/value_spec.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/spec/ruby/core/thread/value_spec.rb b/spec/ruby/core/thread/value_spec.rb
index 82c0cbf762..3d900959df 100644
--- a/spec/ruby/core/thread/value_spec.rb
+++ b/spec/ruby/core/thread/value_spec.rb
@@ -7,7 +7,10 @@ describe "Thread#value" do
end
it "re-raises an error for an uncaught exception" do
- t = Thread.new { raise "Hello" }
+ t = Thread.new {
+ Thread.current.report_on_exception = false
+ raise "Hello"
+ }
lambda { t.value }.should raise_error(RuntimeError, "Hello")
end