aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-15 15:02:43 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-15 15:02:43 +0000
commit45caae41c3fbfc7ba77c5e2dc70734fa80501828 (patch)
treec1d290609d625377ede0dd32d26fde245144eea7 /activesupport/lib
parentd33b7416213290a7e22af05b86c2a6ad3716b5f9 (diff)
downloadrails-45caae41c3fbfc7ba77c5e2dc70734fa80501828.tar.gz
rails-45caae41c3fbfc7ba77c5e2dc70734fa80501828.tar.bz2
rails-45caae41c3fbfc7ba77c5e2dc70734fa80501828.zip
Fixed all the tests
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@623 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/core_ext/hash/keys.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/core_ext/hash/keys.rb b/activesupport/lib/core_ext/hash/keys.rb
index 3c301c6fa6..8725138856 100644
--- a/activesupport/lib/core_ext/hash/keys.rb
+++ b/activesupport/lib/core_ext/hash/keys.rb
@@ -13,7 +13,7 @@ module ActiveSupport #:nodoc:
# Destructively convert all keys to strings.
def stringify_keys!
keys.each do |key|
- unless key.is_a?(String)
+ unless key.class.to_s == "String" # weird hack to make the tests run when string_ext_test.rb is also running
self[key.to_s] = self[key]
delete(key)
end