diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-07-11 16:05:54 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-07-11 16:05:54 -0400 |
| commit | 4153c0af9d4dcc43c0a67cc446a313c46ee5ac33 (patch) | |
| tree | 246154cdf41f487f6d2da2c6b6df5aba50531ab6 /test/lists.tm | |
| parent | a51d48201b5245dc2cc2bfb00e0ac8e7b52203d9 (diff) | |
| parent | 46b0dbc5a448249ddc9a6ce20465f0fa41de6d64 (diff) | |
Merge branch 'main' into decimalsdecimals
Diffstat (limited to 'test/lists.tm')
| -rw-r--r-- | test/lists.tm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/lists.tm b/test/lists.tm index 6281532c..fef23f5d 100644 --- a/test/lists.tm +++ b/test/lists.tm @@ -111,16 +111,14 @@ func main() heap_order : @[Int] repeat heap_order.insert(heap.heap_pop() or stop) - >> heap_order[] == heap_order.sorted() - = yes + assert heap_order[] == heap_order.sorted() heap_order[] = [] for i in 10 heap.heap_push((i*13337) mod 37) >> heap repeat heap_order.insert(heap.heap_pop() or stop) - >> heap_order[] == heap_order.sorted() - = yes + assert heap_order[] == heap_order.sorted() do >> [i*10 for i in 5].from(3) |
