aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/unboundmethod
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/unboundmethod')
-rw-r--r--spec/ruby/core/unboundmethod/inspect_spec.rb2
-rw-r--r--spec/ruby/core/unboundmethod/to_s_spec.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/unboundmethod/inspect_spec.rb b/spec/ruby/core/unboundmethod/inspect_spec.rb
index ffef61a639..a393a1ead3 100644
--- a/spec/ruby/core/unboundmethod/inspect_spec.rb
+++ b/spec/ruby/core/unboundmethod/inspect_spec.rb
@@ -3,5 +3,5 @@ require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../shared/to_s', __FILE__)
describe "UnboundMethod#inspect" do
- it_behaves_like(:unboundmethod_to_s, :inspect)
+ it_behaves_like :unboundmethod_to_s, :inspect
end
diff --git a/spec/ruby/core/unboundmethod/to_s_spec.rb b/spec/ruby/core/unboundmethod/to_s_spec.rb
index 77e1d713f0..fbd9dc4ee8 100644
--- a/spec/ruby/core/unboundmethod/to_s_spec.rb
+++ b/spec/ruby/core/unboundmethod/to_s_spec.rb
@@ -3,5 +3,5 @@ require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../shared/to_s', __FILE__)
describe "UnboundMethod#to_s" do
- it_behaves_like(:unboundmethod_to_s, :to_s)
+ it_behaves_like :unboundmethod_to_s, :to_s
end