summaryrefslogtreecommitdiff
path: root/tests/basic/004.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basic/004.phpt')
-rw-r--r--tests/basic/004.phpt11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/basic/004.phpt b/tests/basic/004.phpt
deleted file mode 100644
index b7e50e0f33..0000000000
--- a/tests/basic/004.phpt
+++ /dev/null
@@ -1,11 +0,0 @@
---TEST--
-Two variables in POST data
---POST--
-a=Hello+World&b=Hello+Again+World
---GET--
---FILE--
-<?php
-error_reporting(0);
-echo "{$_POST['a']} {$_POST['b']}" ?>
---EXPECT--
-Hello World Hello Again World