From: Preston L. Bannister Date: Thu, 16 May 2002 16:07:47 +0000 (+0000) Subject: Fix typo in SKIP clause. X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7fa0e68dcc58b6e9d9e716d56299922654fe3c78;p=php Fix typo in SKIP clause. --- diff --git a/tests/basic/002.phpt b/tests/basic/002.phpt index 9dffe1686a..5a6187df7b 100644 --- a/tests/basic/002.phpt +++ b/tests/basic/002.phpt @@ -1,7 +1,7 @@ --TEST-- Simple POST Method test --SKIPIF-- - + --POST-- a=Hello+World --GET-- diff --git a/tests/basic/003.phpt b/tests/basic/003.phpt index dfc714a8fc..ae6603f448 100644 --- a/tests/basic/003.phpt +++ b/tests/basic/003.phpt @@ -1,7 +1,7 @@ --TEST-- GET and POST Method combined --SKIPIF-- - + --POST-- a=Hello+World --GET-- @@ -9,6 +9,6 @@ b=Hello+Again+World&c=Hi+Mom --FILE-- +echo "post-a=({$_POST['a']}) get-b=({$_GET['b']}) get-c=({$_GET['c']})"?> --EXPECT-- -Hello World Hello Again World Hi Mom +post-a=(Hello World) get-b=(Hello Again World) get-c=(Hi Mom) diff --git a/tests/basic/004.phpt b/tests/basic/004.phpt index 694034ae90..1689d73f59 100644 --- a/tests/basic/004.phpt +++ b/tests/basic/004.phpt @@ -1,7 +1,7 @@ --TEST-- Two variables in POST data --SKIPIF-- - + --POST-- a=Hello+World&b=Hello+Again+World --GET-- diff --git a/tests/basic/005.phpt b/tests/basic/005.phpt index d7bd145ccd..28c1997762 100644 --- a/tests/basic/005.phpt +++ b/tests/basic/005.phpt @@ -1,7 +1,7 @@ --TEST-- Three variables in POST data --SKIPIF-- - + --POST-- a=Hello+World&b=Hello+Again+World&c=1 --GET--