From c2e0ebb590600100f9877cf3ea4c92d06c6f12a2 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 9 May 2009 14:19:58 +0000 Subject: [PATCH] float -> double for the "Time (type)" test according to the PHP manual --- t/inc/Global.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/inc/Global.t b/t/inc/Global.t index 28a662c2ee..976ea95583 100644 --- a/t/inc/Global.t +++ b/t/inc/Global.t @@ -46,7 +46,7 @@ is( wfQuotedPrintable( "\xc4\x88u legebla?", "UTF-8" ), "=?UTF-8?Q?=C4=88u=20legebla=3F?=", 'Quoted printable' ); $start = wfTime(); -is( gettype( $start ), 'float', 'Time (type)' ); +is( gettype( $start ), 'double', 'Time (type)' ); $end = wfTime(); cmp_ok( $end, '>', $start, 'Time (compare)' ); -- 2.20.1