summaryrefslogtreecommitdiff
path: root/src/testdir/test_popupwin.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-09-27 22:47:05 +0200
committerBram Moolenaar <Bram@vim.org>2020-09-27 22:47:05 +0200
commit7a9cbca00a8ec53306f8a5852e332feb79091793 (patch)
treeb7631986432c6cd146e167a6a3c63964361c75a6 /src/testdir/test_popupwin.vim
parent9830938e77b0d36d65b0c31eadf09f7b9d394c29 (diff)
downloadvim-git-7a9cbca00a8ec53306f8a5852e332feb79091793.tar.gz
patch 8.2.1766: Vim9: Some tests are still using :letv8.2.1766
Problem: Vim9: Some tests are still using :let. Solution: Change the last few declarations to use :var.
Diffstat (limited to 'src/testdir/test_popupwin.vim')
-rw-r--r--src/testdir/test_popupwin.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim
index fdd9ac45e..ea2ee3b5c 100644
--- a/src/testdir/test_popupwin.vim
+++ b/src/testdir/test_popupwin.vim
@@ -2690,7 +2690,7 @@ def Popupwin_close_prevwin()
split
wincmd b
assert_equal(2, winnr())
- let buf = term_start(&shell, #{hidden: 1})
+ var buf = term_start(&shell, #{hidden: 1})
popup_create(buf, {})
TermWait(buf, 100)
popup_clear(true)