# HG changeset patch # User Bram Moolenaar # Date 1556895606 -7200 # Node ID 0f0de1fb70a2714e84f1a9fa97cfd9cc7a8fce32 # Parent 675bf614934c25f3b75daa8853d66d52cbef5758 patch 8.1.1253: mapping completion test fails commit https://github.com/vim/vim/commit/92b9e60cb5775ebe8949b4e112feb9f8565441e0 Author: Bram Moolenaar Date: Fri May 3 16:49:25 2019 +0200 patch 8.1.1253: mapping completion test fails Problem: Mapping completion test fails. Solution: Fix expected output. diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim --- a/src/testdir/test_cmdline.vim +++ b/src/testdir/test_cmdline.vim @@ -91,7 +91,7 @@ func Test_map_completion() call feedkeys(":map \\"\", 'xt') call assert_equal('"map ', getreg(':')) call feedkeys(":map \\\"\", 'xt') - call assert_equal('"map x', getreg(':')) + call assert_equal("\"map \", getreg(':')) unmap ,f unmap ,g unmap @@ -102,7 +102,7 @@ func Test_map_completion() call feedkeys(":map \\"\", 'xt') call assert_equal('"map ', getreg(':')) call feedkeys(":map \\"\", 'xt') - call assert_equal('"map ", getreg(':')) unmap set cpo+=< diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -768,6 +768,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1253, +/**/ 1252, /**/ 1251,