commit | 636c5d5399e1a42e8eb5bcb5fede318438d2347a | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Sep 05 18:48:57 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Sep 05 18:48:57 2020 +0200 |
tree | 718eef59b3273235748143bc14596651ced0249d | |
parent | 04637e243d39f791cfc97c3ce96d99ef1bf047e1 [diff] [blame] |
patch 8.2.1607: Vim9: getchar() test fails on MS-Windows Problem: Vim9: getchar() test fails on MS-Windows. Solution: First consume any available input.
diff --git a/src/testdir/test_vim9_func.vim b/src/testdir/test_vim9_func.vim index dcc8087..a80767a 100644 --- a/src/testdir/test_vim9_func.vim +++ b/src/testdir/test_vim9_func.vim
@@ -1506,6 +1506,8 @@ enddef def Test_getchar() + while getchar(0) + endwhile assert_equal(0, getchar(true)) enddef