]> granicus.if.org Git - php/commitdiff
Revert r301354, since we don't need a test for a bogus bug.
authorAdam Harvey <aharvey@php.net>
Mon, 19 Jul 2010 09:58:19 +0000 (09:58 +0000)
committerAdam Harvey <aharvey@php.net>
Mon, 19 Jul 2010 09:58:19 +0000 (09:58 +0000)
ext/standard/tests/http/bug52359.phpt [deleted file]

diff --git a/ext/standard/tests/http/bug52359.phpt b/ext/standard/tests/http/bug52359.phpt
deleted file mode 100644 (file)
index a2d93d2..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
---TEST--
-Bug #52359 (http_build_query seem to encode array incorrectly)
---FILE--
-<?php
-$a = array(
-    'foo/bar' => array(
-        '1',
-        '2'
-    ),
-    'bar' => 'foo'
-);
-
-$b = http_build_query($a, NULL, '&');
-var_dump($b);
-
-$c = urldecode($b);
-var_dump($c);
-?>
---EXPECTF--
-string(43) "foo%2Fbar%5B%5D=1&foo%2Fbar%5B%5D=2&bar=foo"
-string(31) "foo/bar[]=1&foo/bar[]=2&bar=foo"
\ No newline at end of file