diff --git a/test/hover.test.vim b/test/hover.test.vim index 0939bf7e7d..f19df03db3 100644 --- a/test/hover.test.vim +++ b/test/hover.test.vim @@ -71,7 +71,7 @@ let s:cpp_lifetime = { \ '', \ 'Type: char', \ 'Offset: 16 bytes', - \ 'Size: 1 byte (+7 padding)', + \ 'Size: 1 byte (+7 bytes padding)', \ 'nobody will live > 128 years', \ '', \ '// In PointInTime', diff --git a/test/signature_help.test.vim b/test/signature_help.test.vim index 45def35af9..331ba0f393 100644 --- a/test/signature_help.test.vim +++ b/test/signature_help.test.vim @@ -804,7 +804,7 @@ function! Test_Signature_Help_Manual_HideShow() function! Check( ... ) call youcompleteme#test#popup#CheckPopupPosition( \ s:_GetSigHelpWinID(), - \ { 'line': 9, 'col': 6, 'visible': 1 } ) + \ { 'line': 9, 'col': 8, 'visible': 1 } ) call FeedAndCheckAgain( 'kjkj', funcref( 'Check2' ) ) endfunction @@ -812,7 +812,7 @@ function! Test_Signature_Help_Manual_HideShow() function! Check2( ... ) call youcompleteme#test#popup#CheckPopupPosition( \ s:_GetSigHelpWinID(), - \ { 'line': 9, 'col': 6, 'visible': 0 } ) + \ { 'line': 9, 'col': 8, 'visible': 0 } ) call FeedAndCheckAgain( 'kjkj', funcref( 'Check3' ) ) endfunction @@ -820,7 +820,7 @@ function! Test_Signature_Help_Manual_HideShow() function! Check3( ... ) call youcompleteme#test#popup#CheckPopupPosition( \ s:_GetSigHelpWinID(), - \ { 'line': 9, 'col': 6, 'visible': 1 } ) + \ { 'line': 9, 'col': 8, 'visible': 1 } ) call feedkeys( "\" ) endfunction @@ -858,7 +858,7 @@ function! Test_Signature_Help_Manual_NoSigs() let popup_id = s:_GetSigHelpWinID() call youcompleteme#test#popup#CheckPopupPosition( \ s:_GetSigHelpWinID(), - \ { 'line': 9, 'col': 6, 'visible': 1 } ) + \ { 'line': 9, 'col': 8, 'visible': 1 } ) call FeedAndCheckAgain( ')', funcref( 'CheckSigsClosed' ) ) endfunction