FixUp: Change of mapleader

This commit is contained in:
Ben Jackson 2021-02-21 18:17:14 +00:00
commit 5754e96067
3 changed files with 10 additions and 10 deletions

View file

@ -280,8 +280,8 @@ function! Test_Conditional_Line_Breakpoint()
call vimspector#test#signs#AssertCursorIsAtLineInBuffer( 'simple.cpp', 16, 1 )
call vimspector#test#signs#AssertSignGroupEmptyAtLine( 'VimspectorBP', 16 )
" Add the conditional breakpoint
call feedkeys( "\\\<F9>argc==0\<CR>\<CR>", 'xt' )
" Add the conditional breakpoint (note , is the mapleader)
call feedkeys( ",\<F9>argc==0\<CR>\<CR>", 'xt' )
call vimspector#test#signs#AssertSignGroupSingletonAtLine( 'VimspectorBP',
\ 16,
\ 'vimspectorBPCond',
@ -360,8 +360,8 @@ function! Test_Conditional_Line_Breakpoint_Hit()
exe 'edit' fn
call setpos( '.', [ 0, 14, 1 ] )
" Add the conditional breakpoint (3 times)
call feedkeys( "\\\<F9>\<CR>3\<CR>", 'xt' )
" Add the conditional breakpoint (3 times) (note , is the mapleader)
call feedkeys( ",\<F9>\<CR>3\<CR>", 'xt' )
call vimspector#test#signs#AssertSignGroupSingletonAtLine(
\ 'VimspectorBP',
\ 14,