aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/struct/dig_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/struct/dig_spec.rb')
-rw-r--r--spec/ruby/core/struct/dig_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/struct/dig_spec.rb b/spec/ruby/core/struct/dig_spec.rb
index c7c979fabe..4e39e5a4ef 100644
--- a/spec/ruby/core/struct/dig_spec.rb
+++ b/spec/ruby/core/struct/dig_spec.rb
@@ -20,13 +20,13 @@ describe "Struct#dig" do
it "raises a TypeError if any intermediate step does not respond to #dig" do
instance = @klass.new(1)
- lambda {
+ -> {
instance.dig(:a, 3)
}.should raise_error(TypeError)
end
it "raises an ArgumentError if no arguments provided" do
- lambda { @instance.dig }.should raise_error(ArgumentError)
+ -> { @instance.dig }.should raise_error(ArgumentError)
end
it "calls #dig on any intermediate step with the rest of the sequence as arguments" do