diff options
Diffstat (limited to 'macros_test.fnl')
| -rw-r--r-- | macros_test.fnl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros_test.fnl b/macros_test.fnl index 349be1b..7d3818a 100644 --- a/macros_test.fnl +++ b/macros_test.fnl @@ -3,7 +3,7 @@ (local {: eq?} (require :core)) ;; required for testing -(test into-test +(test into (assert-eq (into [] []) []) (assert-eq (into [1 2 3] []) [1 2 3]) (assert-eq (into [1 2 3] [4 5 6]) [1 2 3 4 5 6]) |