aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-03-23 22:32:38 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-03-23 22:42:52 -0400
commitb951d1ff1d52072912a8d65f654a7899fffb39d8 (patch)
tree9a4c3564973c5c76504688485f32c3804143a986
parentf6585cae50a7f1aef8544a6904bb7e986126283f (diff)
downloadrneovim-b951d1ff1d52072912a8d65f654a7899fffb39d8.tar.gz
rneovim-b951d1ff1d52072912a8d65f654a7899fffb39d8.tar.bz2
rneovim-b951d1ff1d52072912a8d65f654a7899fffb39d8.zip
vim-patch:8.2.0402: setting local instead of global flag
Problem: Setting local instead of global flag. Solution: Prepend "g:" to "test_is_flaky". https://github.com/vim/vim/commit/30d53e2c11e670845830bdfc29bf8c1615df61a8
-rw-r--r--src/nvim/testdir/test_autocmd.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_autocmd.vim b/src/nvim/testdir/test_autocmd.vim
index 107428a62e..3401e791c9 100644
--- a/src/nvim/testdir/test_autocmd.vim
+++ b/src/nvim/testdir/test_autocmd.vim
@@ -1369,7 +1369,7 @@ func Test_Changed_FirstTime()
CheckFeature terminal
CheckNotGui
" Starting a terminal to run Vim is always considered flaky.
- let test_is_flaky = 1
+ let g:test_is_flaky = 1
" Prepare file for TextChanged event.
call writefile([''], 'Xchanged.txt')