From ad570991cf4433f281215bd7b7caddd95e83c54b Mon Sep 17 00:00:00 2001 From: husman Date: Thu, 27 Sep 2012 01:17:54 -0400 Subject: [PATCH] synergy ftl. Removed duplicate fields. --- tests/output/bug63162.phpt | 39 -------------------------------------- 1 file changed, 39 deletions(-) diff --git a/tests/output/bug63162.phpt b/tests/output/bug63162.phpt index a003ceafb0..103a512fa4 100644 --- a/tests/output/bug63162.phpt +++ b/tests/output/bug63162.phpt @@ -11,45 +11,6 @@ var_dump(parse_url('http://user:pass@host')); var_dump(parse_url('//user:pass@host')); var_dump(parse_url('//user@host')); ?> ---EXPECTF-- -array(4) { - ["scheme"]=> - string(4) "http" - ["host"]=> - string(4) "host" - ["user"]=> - string(4) "user" - ["pass"]=> - string(4) "pass" -} - -array(3) { - ["host"]=> - string(4) "host" - ["user"]=> - string(4) "user" - ["pass"]=> - string(4) "pass" -} - -array(2) { - ["host"]=> - string(4) "host" - ["user"]=> - string(4) "user" -}--TEST-- -Test parse_url() for bug #63162 ---DESCRIPTION-- -This test covers tests the inputs: -[0]=> http://user:pass@host -[1]=> //user:pass@host -[2]=> //user@host ---FILE-- - --EXPECT-- array(4) { ["scheme"]=> -- 2.40.0