summaryrefslogtreecommitdiff
path: root/ext/date/tests/bug36510.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/bug36510.phpt')
-rw-r--r--ext/date/tests/bug36510.phpt14
1 files changed, 0 insertions, 14 deletions
diff --git a/ext/date/tests/bug36510.phpt b/ext/date/tests/bug36510.phpt
deleted file mode 100644
index ea8bb028b2..0000000000
--- a/ext/date/tests/bug36510.phpt
+++ /dev/null
@@ -1,14 +0,0 @@
---TEST--
-Bug #36510 (strtotime() fails to parse date strings with tabs)
---FILE--
-<?php
-date_default_timezone_set("UTC");
-
-$t = 1140973388;
-
-var_dump(strtotime("-2 hours", $t));
-var_dump(strtotime("-2\thours", $t));
-?>
---EXPECT--
-int(1140966188)
-int(1140966188)