Skip to content

Commit

Permalink
fix tests broken by #25
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed May 20, 2024
1 parent bdc226c commit b877faa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions test/test_default.vimspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ Describe Default settings
It provide variables to customize
Assert Exists('g:loaded_conflict_marker')
Assert Equals(g:conflict_marker_highlight_group, 'Error')
Assert Equals(g:conflict_marker_begin, '^<<<<<<<')
Assert Equals(g:conflict_marker_common_ancestors, '^|||||||')
Assert Equals(g:conflict_marker_separator, '^=======$')
Assert Equals(g:conflict_marker_end, '^>>>>>>>')
Assert Equals(g:conflict_marker_begin, '^<<<<<<<\+')
Assert Equals(g:conflict_marker_common_ancestors, '^|||||||\+')
Assert Equals(g:conflict_marker_separator, '^=======\+$')
Assert Equals(g:conflict_marker_end, '^>>>>>>>\+')
Assert Equals(g:conflict_marker_enable_mappings, 1)
Assert Equals(g:conflict_marker_enable_hooks, 1)
Assert Equals(g:conflict_marker_enable_highlight, 1)
Expand Down
2 changes: 1 addition & 1 deletion test/test_matchit.vimspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Describe matchit

It defines b:match_words
Assert Exists('b:match_words')
Assert Match(b:match_words, ',^<<<<<<<:^|||||||:^=======$:^>>>>>>>')
Assert Equals(b:match_words, ',^<<<<<<<\+:^|||||||\+:^=======\+$:^>>>>>>>\+')
End

It can jump within a conflict marker
Expand Down

0 comments on commit b877faa

Please sign in to comment.