summaryrefslogtreecommitdiff
path: root/ext/date/tests/date_modify-2.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/date_modify-2.phpt')
-rw-r--r--ext/date/tests/date_modify-2.phpt15
1 files changed, 0 insertions, 15 deletions
diff --git a/ext/date/tests/date_modify-2.phpt b/ext/date/tests/date_modify-2.phpt
deleted file mode 100644
index da22316af0..0000000000
--- a/ext/date/tests/date_modify-2.phpt
+++ /dev/null
@@ -1,15 +0,0 @@
---TEST--
-date_modify() function [2]
---SKIPIF--
-<?php if (!function_exists('date_create')) echo "SKIP"; ?>
---FILE--
-<?php
-date_default_timezone_set("GMT");
-$d = date_create("2005-07-18 22:10:00 +0400");
-echo date_format($d, DATE_RFC822), "\n";
-date_modify($d, "+1 hour");
-echo date_format($d, DATE_RFC822), "\n";
-?>
---EXPECT--
-Mon, 18 Jul 2005 22:10:00 GMT+0400
-Mon, 18 Jul 2005 23:10:00 GMT+0400