commit | a99fb23842f055c511bfe1b62de7bbd14d5a99c0 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Dec 20 12:25:03 2021 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Dec 20 12:25:03 2021 +0000 |
tree | b62bae850d599924470ac53de83824b285cbcb1b | |
parent | 003312b1d2ee2f4922f473b8bf50af6663c0efac [diff] [blame] |
patch 8.2.3859: Vim9: some code lines not tested Problem: Vim9: some code lines not tested. Solution: Add a few specific tests.
diff --git a/src/testdir/test_vim9_cmd.vim b/src/testdir/test_vim9_cmd.vim index 2d86b6b..6347a28 100644 --- a/src/testdir/test_vim9_cmd.vim +++ b/src/testdir/test_vim9_cmd.vim
@@ -1392,6 +1392,10 @@ s:theList[1] = 44 assert_equal([1, 44, 3], s:theList) + if 0 + lockvar whatever + endif + var d = {a: 1, b: 2} d.a = 3 d.b = 4