summaryrefslogtreecommitdiff
path: root/spec/ruby/core/hash/each_key_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/hash/each_key_spec.rb')
-rw-r--r--spec/ruby/core/hash/each_key_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/hash/each_key_spec.rb b/spec/ruby/core/hash/each_key_spec.rb
index 4a4078a594..9cc31d803c 100644
--- a/spec/ruby/core/hash/each_key_spec.rb
+++ b/spec/ruby/core/hash/each_key_spec.rb
@@ -18,6 +18,6 @@ describe "Hash#each_key" do
keys.should == h.keys
end
- it_behaves_like(:hash_iteration_no_block, :each_key)
- it_behaves_like(:enumeratorized_with_origin_size, :each_key, { 1 => 2, 3 => 4, 5 => 6 })
+ it_behaves_like :hash_iteration_no_block, :each_key
+ it_behaves_like :enumeratorized_with_origin_size, :each_key, { 1 => 2, 3 => 4, 5 => 6 }
end