aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-02-10 03:55:12 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-02-10 03:55:12 +0000
commiteb2dad2fe56b40b698d1273dd04bba1dee97d9b7 (patch)
tree6c474317bed58601f1a3dd30c28e0a3d6a64e610 /actionpack/lib
parent916f9e5143a07092afe1efdf22b8928241c6781c (diff)
downloadrails-eb2dad2fe56b40b698d1273dd04bba1dee97d9b7.tar.gz
rails-eb2dad2fe56b40b698d1273dd04bba1dee97d9b7.tar.bz2
rails-eb2dad2fe56b40b698d1273dd04bba1dee97d9b7.zip
Revert [6086] and [6087] since they caused a major regression with functional tests in 1.2.2. References #7372.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6145 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_controller/test_process.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/test_process.rb b/actionpack/lib/action_controller/test_process.rb
index 1c319418b6..beccec6f94 100644
--- a/actionpack/lib/action_controller/test_process.rb
+++ b/actionpack/lib/action_controller/test_process.rb
@@ -292,11 +292,11 @@ module ActionController #:nodoc:
end
def [](key)
- data[key.to_s]
+ data[key]
end
def []=(key, value)
- data[key.to_s] = value
+ data[key] = value
end
def update