patch 9.0.0363: common names in test files causes tests to be flaky
Problem: Common names in test files causes tests to be flaky.
Solution: Use more specific names.
diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim
index a92bd8b..7cdd128 100644
--- a/src/testdir/test_popupwin.vim
+++ b/src/testdir/test_popupwin.vim
@@ -4104,7 +4104,7 @@
func Test_popup_setoptions_other_tab()
- new Xfile
+ new Xpotfile
let winid = win_getid()
call setline(1, 'some text')
call prop_type_add('textprop', {})
@@ -4116,7 +4116,7 @@
tabclose
call popup_close(id)
- bwipe! Xfile
+ bwipe! Xpotfile
call prop_type_delete('textprop')
endfunc