summaryrefslogtreecommitdiffstats
path: root/src/testdir/screendump.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-03-18 21:10:44 +0100
committerBram Moolenaar <Bram@vim.org>2020-03-18 21:10:44 +0100
commit30d53e2c11e670845830bdfc29bf8c1615df61a8 (patch)
tree8cabc16cff1ac6fa9c46fcd8cb232965450da3e6 /src/testdir/screendump.vim
parent8dfcce3a78ccb520cc9d09081f998091494c50bf (diff)
patch 8.2.0402: setting local instead of global flagv8.2.0402
Problem: Setting local instead of global flag. Solution: Prepend "g:" to "test_is_flaky".
Diffstat (limited to 'src/testdir/screendump.vim')
-rw-r--r--src/testdir/screendump.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/screendump.vim b/src/testdir/screendump.vim
index 14863f9ae4..8ea708a39f 100644
--- a/src/testdir/screendump.vim
+++ b/src/testdir/screendump.vim
@@ -25,7 +25,7 @@ func VerifyScreenDump(buf, filename, options, ...)
let testfile = 'failed/' . a:filename . '.dump'
" Starting a terminal to make a screendump is always considered flaky.
- let test_is_flaky = 1
+ let g:test_is_flaky = 1
" Redraw to execute the code that updates the screen. Otherwise we get the
" text and attributes only from the internal buffer.