summaryrefslogtreecommitdiff
path: root/spec/ruby/core/module/gt_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/module/gt_spec.rb')
-rw-r--r--spec/ruby/core/module/gt_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/module/gt_spec.rb b/spec/ruby/core/module/gt_spec.rb
index adab89a78b..b8a73c9ff9 100644
--- a/spec/ruby/core/module/gt_spec.rb
+++ b/spec/ruby/core/module/gt_spec.rb
@@ -31,6 +31,6 @@ describe "Module#>" do
end
it "raises a TypeError if the argument is not a class/module" do
- lambda { ModuleSpecs::Parent > mock('x') }.should raise_error(TypeError)
+ -> { ModuleSpecs::Parent > mock('x') }.should raise_error(TypeError)
end
end