From e0c883ae5e00a6a8f4cdeea0cea497ceac072c5c Mon Sep 17 00:00:00 2001 From: Andrey Orst Date: Sat, 7 Nov 2020 13:06:36 +0300 Subject: fix(macros): fix metadata tests --- test/fn.fnl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'test/fn.fnl') diff --git a/test/fn.fnl b/test/fn.fnl index b9876ca..7ea7c0a 100644 --- a/test/fn.fnl +++ b/test/fn.fnl @@ -40,10 +40,8 @@ (testing fn&-meta (fn& f "docstring" [x] x) (assert-eq (meta f) {:fnl/docstring "docstring" - ;; :fnl/arglist ["x"] ;; TODO: why this works only in REPL? - }) + :fnl/arglist ["x"]}) (fn& f "docstring" [...] [...]) (assert-eq (meta f) {:fnl/docstring "docstring" - ;; :fnl/arglist ["..."] ;; TODO: same as above - }))) + :fnl/arglist ["..."]}))) -- cgit v1.2.3