diff options
author | Xavier Noria <fxn@hashref.com> | 2012-10-09 19:40:38 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-10-09 19:41:14 +0200 |
commit | 3395633a5045fce1f9a9d25f86ba897491874d15 (patch) | |
tree | d497b1b0b313c280a55f3ec8bfaaa39e8dec487e /activesupport | |
parent | 0e6c70e7dec7469f762e7476422881f1da7e30d2 (diff) | |
download | rails-3395633a5045fce1f9a9d25f86ba897491874d15.tar.gz rails-3395633a5045fce1f9a9d25f86ba897491874d15.tar.bz2 rails-3395633a5045fce1f9a9d25f86ba897491874d15.zip |
adds a missing require
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/core_ext/hash_ext_test.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/hash_ext_test.rb b/activesupport/test/core_ext/hash_ext_test.rb index fbe98aed06..b32f0772e2 100644 --- a/activesupport/test/core_ext/hash_ext_test.rb +++ b/activesupport/test/core_ext/hash_ext_test.rb @@ -6,6 +6,7 @@ require 'active_support/ordered_hash' require 'active_support/core_ext/object/deep_dup' require 'active_support/inflections' require 'active_support/core_ext/object/to_param' +require 'active_support/core_ext/object/to_query' class HashExtTest < ActiveSupport::TestCase class IndifferentHash < HashWithIndifferentAccess |