From 75b2b520b967daa75ebe04bf3553aacbe72c4b84 Mon Sep 17 00:00:00 2001 From: Artem Medeu Date: Sat, 30 Mar 2024 21:24:50 +0500 Subject: [PATCH] test: fix reader conditionals typo --- tests/nvim-paredit/barf_spec.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/nvim-paredit/barf_spec.lua b/tests/nvim-paredit/barf_spec.lua index b2ee040..1de18c7 100644 --- a/tests/nvim-paredit/barf_spec.lua +++ b/tests/nvim-paredit/barf_spec.lua @@ -54,9 +54,9 @@ describe("barfing ::", function() }, { "reader conditional", - before_content = "#?{:cljs a :clj b}", + before_content = "#?(:cljs a :clj b)", before_cursor = { 1, 3 }, - after_content = "#?{:cljs a :clj} b", + after_content = "#?(:cljs a :clj) b", after_cursor = { 1, 3 }, } })