Skip to content

Commit f487857

Browse files
committed
cue fmt
1 parent bf8eec8 commit f487857

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

website/cue/reference/remap/functions/to_timestamp.cue

+5-5
Original file line numberDiff line numberDiff line change
@@ -51,39 +51,39 @@ remap: functions: to_timestamp: {
5151
source: """
5252
to_timestamp!("2020-10-21T16:00:00Z")
5353
"""
54-
return: "2020-10-21T16:00:00Z"
54+
return: "2020-10-21T16:00:00Z"
5555
skip_test: true
5656
},
5757
{
5858
title: "Coerce a unix timestamp (integer) to a timestamp"
5959
source: """
6060
to_timestamp!(1675968923)
6161
"""
62-
return: "2023-02-09T18:55:23Z"
62+
return: "2023-02-09T18:55:23Z"
6363
skip_test: true
6464
},
6565
{
6666
title: "Coerce a unix timestamp (float) to a timestamp"
6767
source: """
6868
to_timestamp!(1675968923.567)
6969
"""
70-
return: "2023-02-09T18:55:23.566999912Z"
70+
return: "2023-02-09T18:55:23.566999912Z"
7171
skip_test: true
7272
},
7373
{
7474
title: "Coerce a unix timestamp, in milliseconds, to a timestamp"
7575
source: """
7676
to_timestamp!(1676478566639, unit: "milliseconds")
7777
"""
78-
return: "2023-02-15T16:29:26.639Z"
78+
return: "2023-02-15T16:29:26.639Z"
7979
skip_test: true
8080
},
8181
{
8282
title: "Coerce a unix timestamp, in nanoseconds, to a timestamp"
8383
source: """
8484
to_timestamp!(1675968923012312311, unit: "nanoseconds")
8585
"""
86-
return: "2023-02-09T18:55:23.012312311Z"
86+
return: "2023-02-09T18:55:23.012312311Z"
8787
skip_test: true
8888
},
8989
]

0 commit comments

Comments
 (0)