summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/bug25758.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/bug25758.phpt')
-rw-r--r--ext/standard/tests/array/bug25758.phpt14
1 files changed, 0 insertions, 14 deletions
diff --git a/ext/standard/tests/array/bug25758.phpt b/ext/standard/tests/array/bug25758.phpt
deleted file mode 100644
index ff97d2e3fb..0000000000
--- a/ext/standard/tests/array/bug25758.phpt
+++ /dev/null
@@ -1,14 +0,0 @@
---TEST--
-Bug #25758 (var_export does not escape ' & \ inside array keys)
---FILE--
-<?php
- $a = array ("quote'" => array("quote'"));
- echo var_export($a, true);
-?>
---EXPECT--
-array (
- 'quote\'' =>
- array (
- 0 => 'quote\'',
- ),
-)