aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/kernel/taint_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/kernel/taint_spec.rb')
-rw-r--r--spec/ruby/core/kernel/taint_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/ruby/core/kernel/taint_spec.rb b/spec/ruby/core/kernel/taint_spec.rb
index ff1b20f9ca..000295f6d2 100644
--- a/spec/ruby/core/kernel/taint_spec.rb
+++ b/spec/ruby/core/kernel/taint_spec.rb
@@ -15,7 +15,7 @@ describe "Kernel#taint" do
it "raises #{frozen_error_class} on an untainted, frozen object" do
o = Object.new.freeze
- lambda { o.taint }.should raise_error(frozen_error_class)
+ -> { o.taint }.should raise_error(frozen_error_class)
end
it "does not raise an error on a tainted, frozen object" do
@@ -32,13 +32,13 @@ describe "Kernel#taint" do
it "no raises a RuntimeError on symbols" do
v = :sym
- lambda { v.taint }.should_not raise_error(RuntimeError)
+ -> { v.taint }.should_not raise_error(RuntimeError)
v.tainted?.should == false
end
it "no raises error on fixnum values" do
[1].each do |v|
- lambda { v.taint }.should_not raise_error(RuntimeError)
+ -> { v.taint }.should_not raise_error(RuntimeError)
v.tainted?.should == false
end
end