lib/action_controller/test_process.rb in actionpack-1.13.1 vs lib/action_controller/test_process.rb in actionpack-1.13.2

- old
+ new

@@ -286,14 +286,14 @@ def data @attributes ||= @saved_attributes || {} end def [](key) - data[key] + data[key.to_s] end def []=(key, value) - data[key] = value + data[key.to_s] = value end def update @saved_attributes = @attributes end