summaryrefslogtreecommitdiff
path: root/ext/ereg/tests/006.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ereg/tests/006.phpt')
-rw-r--r--ext/ereg/tests/006.phpt8
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/ereg/tests/006.phpt b/ext/ereg/tests/006.phpt
deleted file mode 100644
index cae349672e..0000000000
--- a/ext/ereg/tests/006.phpt
+++ /dev/null
@@ -1,8 +0,0 @@
---TEST--
-Test ereg_replace of start-of-line
---FILE--
-<?php $a="This is a nice and simple string";
- echo ereg_replace("^This","That",$a);
-?>
---EXPECT--
-That is a nice and simple string