summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_channel.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-29 22:31:20 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-29 22:31:20 +0100
commit3b0d70f4ff436cb144683dafd956e8a3ee485a90 (patch)
tree20d6db8894730c9ed823c9c854f696704e993949 /src/testdir/test_channel.vim
parent4f1b083be43f351bc107541e7b0c9655a5d2c0bb (diff)
patch 9.0.0323: using common name in tests leads to flaky testsv9.0.0323
Problem: Using common name in tests leads to flaky tests. Solution: Rename files and directories to be more specific.
Diffstat (limited to 'src/testdir/test_channel.vim')
-rw-r--r--src/testdir/test_channel.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index d299ee3e62..9f60bbc796 100644
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -2281,9 +2281,9 @@ func Test_zz_ch_log()
let text = readfile('Xlog')
call assert_match("hello there", text[1])
call assert_match("%s%s", text[2])
- call mkdir("Xdir1")
- call assert_fails("call ch_logfile('Xdir1')", 'E484:')
- cal delete("Xdir1", 'd')
+ call mkdir("Xchlogdir1")
+ call assert_fails("call ch_logfile('Xchlogdir1')", 'E484:')
+ cal delete("Xchlogdir1", 'd')
call delete('Xlog')
endfunc