comparison src/testdir/screendump.vim @ 17918:9606c0adc148 v8.1.1955

patch 8.1.1955: tests contain typos Commit: https://github.com/vim/vim/commit/1bc353b6f1b063e189e0cef26f8dc586dcf9161f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 1 14:45:28 2019 +0200 patch 8.1.1955: tests contain typos Problem: Tests contain typos. Solution: Correct the typos. (Dominique Pelle)
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Sep 2019 15:00:04 +0200
parents 7927cf327396
children c3f506e24eab
comparison
equal deleted inserted replaced
17917:5ccb73c85dd1 17918:9606c0adc148
22 " Returns non-zero when verification fails. 22 " Returns non-zero when verification fails.
23 func VerifyScreenDump(buf, filename, options, ...) 23 func VerifyScreenDump(buf, filename, options, ...)
24 let reference = 'dumps/' . a:filename . '.dump' 24 let reference = 'dumps/' . a:filename . '.dump'
25 let testfile = 'failed/' . a:filename . '.dump' 25 let testfile = 'failed/' . a:filename . '.dump'
26 26
27 " Redraw to execut the code that updates the screen. Otherwise we get the 27 " Redraw to execute the code that updates the screen. Otherwise we get the
28 " text and attributes only from the internal buffer. 28 " text and attributes only from the internal buffer.
29 redraw 29 redraw
30 30
31 let did_mkdir = 0 31 let did_mkdir = 0
32 if !isdirectory('failed') 32 if !isdirectory('failed')