diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-08-04 00:45:09 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-08-04 00:45:09 +0000 |
commit | 2d6ca64c457cfe87d9a15f77acf60470d6ac005f (patch) | |
tree | 969db56e20a68a6381de20fbc67baaef7430d1a9 | |
parent | 6e842f216c52d23f33a19a18cff7db14fe3787fc (diff) | |
download | rails-2d6ca64c457cfe87d9a15f77acf60470d6ac005f.tar.gz rails-2d6ca64c457cfe87d9a15f77acf60470d6ac005f.tar.bz2 rails-2d6ca64c457cfe87d9a15f77acf60470d6ac005f.zip |
Make us pass to ease RESTful children posts
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4659 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rwxr-xr-x | actionpack/test/controller/cgi_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/cgi_test.rb b/actionpack/test/controller/cgi_test.rb index 9e5aa9f92f..45d4cf686c 100755 --- a/actionpack/test/controller/cgi_test.rb +++ b/actionpack/test/controller/cgi_test.rb @@ -42,7 +42,7 @@ class CGITest < Test::Unit::TestCase def test_deep_query_string_with_array_of_hashes_with_multiple_pairs assert_equal( {'x' => {'y' => [{'z' => '10', 'w' => 'a'}, {'z' => '20', 'w' => 'b'}]}}, - CGIMethods.parse_query_parameters('x[y][][z]=10&x[y][][w]=a&x[y][][z]=20&x[y][][w]=c') + CGIMethods.parse_query_parameters('x[y][][z]=10&x[y][][w]=a&x[y][][z]=20&x[y][][w]=b') ) end |