diff options
Diffstat (limited to '')
| -rw-r--r-- | stdlib/source/test/aedifex/artifact/snapshot/time.lux | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/stdlib/source/test/aedifex/artifact/snapshot/time.lux b/stdlib/source/test/aedifex/artifact/snapshot/time.lux index 567c70ce4..3acb37232 100644 --- a/stdlib/source/test/aedifex/artifact/snapshot/time.lux +++ b/stdlib/source/test/aedifex/artifact/snapshot/time.lux @@ -11,15 +11,15 @@      [parser       ["<.>" text]]]     [math -    ["." random (#+ Random)]] -   [time -    ["." instant]]] +    ["." random (#+ Random)]]]    {#program -   ["." /]}) +   ["." /]} +  ["$." /// #_ +   ["#." time]])  (def: #export random    (Random /.Time) -  random.instant) +  $///time.random)  (def: #export test    Test @@ -36,7 +36,7 @@                           (|> expected                               /.format                               (<text>.run /.parser) -                             (try\map (\ instant.equivalence = expected)) +                             (try\map (\ /.equivalence = expected))                               (try.default false)))                  ))            ))) | 
