summaryrefslogtreecommitdiff
path: root/spec/ruby/core/exception/result_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/exception/result_spec.rb')
-rw-r--r--spec/ruby/core/exception/result_spec.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/spec/ruby/core/exception/result_spec.rb b/spec/ruby/core/exception/result_spec.rb
index 2f12673295..d42fcdffcb 100644
--- a/spec/ruby/core/exception/result_spec.rb
+++ b/spec/ruby/core/exception/result_spec.rb
@@ -14,10 +14,8 @@ describe "StopIteration#result" do
it "returns the method-returned-object from an Enumerator" do
@enum.next
@enum.next
- -> { @enum.next }.should(
- raise_error(StopIteration) do |error|
- error.result.should equal(:method_returned)
- end
- )
+ -> { @enum.next }.should raise_error(StopIteration) { |error|
+ error.result.should equal(:method_returned)
+ }
end
end