From dd032431be7663ac9b2dbfea035e4989a6b7066c Mon Sep 17 00:00:00 2001 From: Chen Bin Date: Sun, 5 Feb 2023 21:36:12 +1100 Subject: [PATCH] fixed ocaml test --- tests/evil-matchit-tests.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/evil-matchit-tests.el b/tests/evil-matchit-tests.el index 8c46fdb..8443f31 100644 --- a/tests/evil-matchit-tests.el +++ b/tests/evil-matchit-tests.el @@ -429,13 +429,13 @@ (expect " |if foo then 1 else 2") ;; parentheses - (prepare "let x = (1, 2) in 3") + (prepare "(1, 2) in 3") (evilmi-jump-items) - (expect "let x = (1, 2|) in 3" ) + (expect "(1, 2|) in 3" ) (evilmi-jump-items) - (expect "let x = |(1, 2) in 3" ) + (expect "|(1, 2) in 3" ) ;; struct end (prepare "module X = struct type t = int end")