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.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/exception/result_spec.rb b/spec/ruby/core/exception/result_spec.rb
index d42fcdffcb..451ff43af5 100644
--- a/spec/ruby/core/exception/result_spec.rb
+++ b/spec/ruby/core/exception/result_spec.rb
@@ -14,8 +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) { |error|
- error.result.should equal(:method_returned)
+ -> { @enum.next }.should.raise(StopIteration) { |error|
+ error.result.should.equal?(:method_returned)
}
end
end