# HG changeset patch # User Christian Brabandt # Date 1509061504 -7200 # Node ID 6daad7ef16beac7f96f99ab2fd59ced98d167f2c # Parent ea24919085d3dd6bf0086c3f2bca8ed49adb9e8e patch 8.0.1226: edit and popup tests failing commit https://github.com/vim/vim/commit/2a45d64d0a7ab28d77eee277244e76dbbf8c2db8 Author: Bram Moolenaar Date: Fri Oct 27 01:35:00 2017 +0200 patch 8.0.1226: edit and popup tests failing Problem: Edit and popup tests failing. Solution: Make the tests pass. diff --git a/src/testdir/test_edit.vim b/src/testdir/test_edit.vim --- a/src/testdir/test_edit.vim +++ b/src/testdir/test_edit.vim @@ -215,14 +215,16 @@ endfunc func! Test_edit_08() " reset insertmode from i_ctrl-r_= + let g:bufnr = bufnr('%') new call setline(1, ['abc']) call cursor(1, 4) - call feedkeys(":set im\ZZZ\=setbufvar(1,'&im', 0)\",'tnix') + call feedkeys(":set im\ZZZ\=setbufvar(g:bufnr,'&im', 0)\",'tnix') call assert_equal(['abZZZc'], getline(1,'$')) call assert_equal([0, 1, 1, 0], getpos('.')) call assert_false(0, '&im') bw! + unlet g:bufnr endfunc func! Test_edit_09() diff --git a/src/testdir/test_popup.vim b/src/testdir/test_popup.vim --- a/src/testdir/test_popup.vim +++ b/src/testdir/test_popup.vim @@ -681,7 +681,8 @@ func Test_popup_and_preview_autocommand( call setline(2, ' os.') $ call feedkeys("A\\\\\\\", 'tx') - call assert_equal(["import os", " os.EX_IOERR", ''], getline(1,'$')) + call assert_equal("import os", getline(1)) + call assert_match(' os.\(EX_IOERR\|O_CREAT\)$', getline(2)) call assert_equal(1, winnr('$')) " previewwindow option is not set call assert_equal(0, &previewwindow) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1226, +/**/ 1225, /**/ 1224,