Skip to content

Commit

Permalink
Fix test failure on MS-Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
yegappan committed Sep 11, 2020
1 parent 0b763bd commit 1eeb1d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/testdir/test_functions.vim
Expand Up @@ -2560,7 +2560,7 @@ func Test_matchfuzzy()
call assert_fails('call matchfuzzy(["abc"], [])', 'E730:')
call assert_equal([], matchfuzzy([], 'abc'))
call assert_equal([], matchfuzzy(['abc'], ''))
call assert_equal(['axc', 'ayc'], matchfuzzy(['axc', 10, 'ayc'], 'ac'))
call assert_equal(['abc'], matchfuzzy(['abc', 10], 'ac'))
call assert_equal([], matchfuzzy([10, 20], 'ac'))
call assert_equal(['abc'], matchfuzzy(['abc'], 'abc'))
call assert_equal(['crayon', 'camera'], matchfuzzy(['camera', 'crayon'], 'cra'))
Expand Down

0 comments on commit 1eeb1d4

Please sign in to comment.