From 418e04edff4048feb1578130d12defd8727a2559 Mon Sep 17 00:00:00 2001 From: XeroOl Date: Sat, 24 Feb 2024 00:00:33 -0600 Subject: [PATCH] fix tests to work again --- test/completion-test.fnl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/completion-test.fnl b/test/completion-test.fnl index 03bc220..41c5dd1 100644 --- a/test/completion-test.fnl +++ b/test/completion-test.fnl @@ -228,8 +228,7 @@ ;; (it "offers rich information about macro-module completions"))) (it "completes things in an if statement with no body" (check-completion "(if ge" 0 6 [:getmetatable] []) - (check-completion "(local x {:field 100})\n(if x.fi" 1 8 [:field] []) - (check-completion "(local x {:field 100})\n(when x.fi" 1 10 [:field] []))) + (check-completion "(local x {:field 100})\n(if x.fi" 1 8 [:field] []))) ;; (it "suggests known fn keys when using the `:` special") ;; (it "suggests known keys when using the `.` special") ;; (it "suggests known module names in `require` and `include` and `import-macros` and `require-macros` and friends")