diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-06-09 00:03:12 -0400 |
---|---|---|
committer | Rafael França <rafaelmfranca@gmail.com> | 2016-06-09 00:03:12 -0400 |
commit | 56de698f6b9b93b48a438856e7ae13ddeaf2b4c1 (patch) | |
tree | 00ea6ee3161a7212b38fa7b94247d42d63a44f22 /activesupport/test | |
parent | 154f11663e2fca684e7c6d14d3dffa79b82cb84f (diff) | |
parent | 24d496cef57bd62788c8af130f4510b8c1817e69 (diff) | |
download | rails-56de698f6b9b93b48a438856e7ae13ddeaf2b4c1.tar.gz rails-56de698f6b9b93b48a438856e7ae13ddeaf2b4c1.tar.bz2 rails-56de698f6b9b93b48a438856e7ae13ddeaf2b4c1.zip |
Merge pull request #25332 from abhishekjain16/test_fix
existant => existent
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/core_ext/hash_ext_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/hash_ext_test.rb b/activesupport/test/core_ext/hash_ext_test.rb index e70680c773..e8099baa35 100644 --- a/activesupport/test/core_ext/hash_ext_test.rb +++ b/activesupport/test/core_ext/hash_ext_test.rb @@ -1042,7 +1042,7 @@ class HashExtTest < ActiveSupport::TestCase assert_equal 3, new_hash[2] new_hash.default = 2 - assert_equal 2, new_hash[:non_existant] + assert_equal 2, new_hash[:non_existent] end def test_to_hash_with_raising_default_proc |