From 87c23199864f2c510ab4778db2c9c86ca5a54896 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Fri, 3 Jul 2026 08:18:01 +0800 Subject: [PATCH] vim-patch:9.2.0763: tests: style issue in test_plugin_netrw (#40543) Problem: tests: style issue in test_plugin_netrw (after v9.2.0761) Solution: Clean-up newly created directory, use consistent concat operator https://github.com/vim/vim/commit/1ebd2fdb78ead0f46dd049f39c3d4cfef951dad8 Co-authored-by: Christian Brabandt --- test/old/testdir/test_plugin_netrw.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/old/testdir/test_plugin_netrw.vim b/test/old/testdir/test_plugin_netrw.vim index d1132ca906..4f692396f0 100644 --- a/test/old/testdir/test_plugin_netrw.vim +++ b/test/old/testdir/test_plugin_netrw.vim @@ -891,12 +891,12 @@ func Test_netrw_open_backslash_file() let dir = getcwd() . '/Xbslash' let fname = dir . '/\' - call mkdir(dir, 'p') + call mkdir(dir, 'pR') call writefile(['backslash file content'], fname) call assert_true(filereadable(fname)) " list the directory and move onto the '\' entry - exe 'Explore ' .. dir + exe 'Explore ' . dir call assert_true(search('^\\$', 'w') > 0) " open it