patch 8.2.2082: Vim9: can still use the depricated #{} dict syntax
Problem: Vim9: can still use the depricated #{} dict syntax.
Solution: Remove support for #{} in Vim9 script. (closes #7406, closes #7405)
diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim
index 42542a3..50d4715 100644
--- a/src/testdir/test_popupwin.vim
+++ b/src/testdir/test_popupwin.vim
@@ -2172,7 +2172,7 @@
endfunc
def CreatePopup(text: list<string>)
- popup_create(text, #{
+ popup_create(text, {
\ minwidth: 30,
\ maxwidth: 30,
\ minheight: 4,
@@ -2717,7 +2717,7 @@
split
wincmd b
assert_equal(2, winnr())
- var buf = term_start(&shell, #{hidden: 1})
+ var buf = term_start(&shell, {hidden: 1})
popup_create(buf, {})
TermWait(buf, 100)
popup_clear(true)