From a41a669052db222d4fb07ce832e88fd3435a5522 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Thu, 16 Sep 2010 17:54:20 -0400 Subject: [PATCH] Fixed fouled-up fudge syntax. --- S32-temporal/DateTime-Instant-Duration.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/S32-temporal/DateTime-Instant-Duration.t b/S32-temporal/DateTime-Instant-Duration.t index 21756675eb..2ae7ebfe44 100644 --- a/S32-temporal/DateTime-Instant-Duration.t +++ b/S32-temporal/DateTime-Instant-Duration.t @@ -94,7 +94,7 @@ is DateTime.new(dtpi 2005, 12, 31, 23, 59, 59.5).second, 59.5, 'Round-tripping is DateTime.new(dtpi 2005, 12, 31, 23, 59, 60.5).second, 60.5, 'Round-tripping DateTime.Instant (2005-12-31T23:59:60.5Z)'; is DateTime.new(dtpi 2006, 1, 1, 0, 0, 0.5).second, 0.5, 'Round-tripping DateTime.Instant (2006-01-01T00:00:00.5Z)'; -#?rakudo skip 3 'high-precision Instants NYI (need FatRats)' +#?rakudo 3 skip 'high-precision Instants NYI (need FatRats)' is DateTime.new(dtpi 2005, 12, 31, 23, 59, 59.2).second, 59.2, 'Round-tripping DateTime.Instant (2005-12-31T23:59:59.2Z)'; is DateTime.new(dtpi 2005, 12, 31, 23, 59, 60.2).second, 60.2, 'Round-tripping DateTime.Instant (2005-12-31T23:59:60.2Z)'; is DateTime.new(dtpi 2006, 1, 1, 0, 0, 0.2).second, 0.2, 'Round-tripping DateTime.Instant (2006-01-01T00:00:00.2Z)';