summaryrefslogtreecommitdiff
path: root/ext/date/tests/idate_variation3.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/idate_variation3.phpt')
-rw-r--r--ext/date/tests/idate_variation3.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/date/tests/idate_variation3.phpt b/ext/date/tests/idate_variation3.phpt
index dd38a44170..4587106855 100644
--- a/ext/date/tests/idate_variation3.phpt
+++ b/ext/date/tests/idate_variation3.phpt
@@ -5,9 +5,9 @@ Test idate() function : usage variation - Passing higher positive and negetive f
--FILE--
<?php
/* Prototype : int idate(string format [, int timestamp])
- * Description: Format a local time/date as integer
+ * Description: Format a local time/date as integer
* Source code: ext/date/php_date.c
- * Alias to functions:
+ * Alias to functions:
*/
echo "*** Testing idate() : usage variation ***\n";
@@ -23,7 +23,7 @@ var_dump( idate($format, $timestamp) );
echo "\n-- Testing idate() function with float -12.3456789000e10 to timestamp --\n";
$timestamp = -12.3456789000e10;
var_dump( idate($format, $timestamp) );
-
+
?>
===DONE===
--EXPECTF--