summaryrefslogtreecommitdiff
path: root/spec/ruby/core/hash/each_pair_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/hash/each_pair_spec.rb')
-rw-r--r--spec/ruby/core/hash/each_pair_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/ruby/core/hash/each_pair_spec.rb b/spec/ruby/core/hash/each_pair_spec.rb
index 285ca01b26..3fa07c8b67 100644
--- a/spec/ruby/core/hash/each_pair_spec.rb
+++ b/spec/ruby/core/hash/each_pair_spec.rb
@@ -5,7 +5,7 @@ require File.expand_path('../shared/each', __FILE__)
require File.expand_path('../../enumerable/shared/enumeratorized', __FILE__)
describe "Hash#each_pair" do
- it_behaves_like(:hash_each, :each_pair)
- it_behaves_like(:hash_iteration_no_block, :each_pair)
- it_behaves_like(:enumeratorized_with_origin_size, :each_pair, { 1 => 2, 3 => 4, 5 => 6 })
+ it_behaves_like :hash_each, :each_pair
+ it_behaves_like :hash_iteration_no_block, :each_pair
+ it_behaves_like :enumeratorized_with_origin_size, :each_pair, { 1 => 2, 3 => 4, 5 => 6 }
end