From c4128bcd131fb7152bda8f8dd2b5e41d2fefa88c Mon Sep 17 00:00:00 2001 From: hrsh7th <629908+hrsh7th@users.noreply.github.com> Date: Wed, 15 Feb 2023 00:32:21 +0900 Subject: [PATCH] Fix CI --- lua/cmp/matcher_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/cmp/matcher_spec.lua b/lua/cmp/matcher_spec.lua index b3a8628..d464898 100644 --- a/lua/cmp/matcher_spec.lua +++ b/lua/cmp/matcher_spec.lua @@ -47,7 +47,7 @@ describe('matcher', function() assert.is.truthy(score >= 1) assert.equals(matches[1].word_match_start, 5) - score, matches = matcher.match('tail', 'HCDetails', { + score = matcher.match('tail', 'HCDetails', { disallow_fuzzy_matching = false, disallow_partial_matching = false, disallow_prefix_unmatching = false,