diff options
Diffstat (limited to 'spec/ruby/core/hash/rehash_spec.rb')
| -rw-r--r-- | spec/ruby/core/hash/rehash_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/hash/rehash_spec.rb b/spec/ruby/core/hash/rehash_spec.rb index 32ba3fcfb9..9816648f08 100644 --- a/spec/ruby/core/hash/rehash_spec.rb +++ b/spec/ruby/core/hash/rehash_spec.rb @@ -51,7 +51,7 @@ describe "Hash#rehash" do end it "raises a #{frozen_error_class} if called on a frozen instance" do - lambda { HashSpecs.frozen_hash.rehash }.should raise_error(frozen_error_class) - lambda { HashSpecs.empty_frozen_hash.rehash }.should raise_error(frozen_error_class) + -> { HashSpecs.frozen_hash.rehash }.should raise_error(frozen_error_class) + -> { HashSpecs.empty_frozen_hash.rehash }.should raise_error(frozen_error_class) end end |
