From e8a8342132d47a0f5b94248049238bf16b23715e Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Thu, 23 Jun 2016 11:15:08 +0200 Subject: test: fix command_count_spec The test hit wait_return if x or .x.swp exists in the project root directory. --- test/functional/ex_cmds/write_spec.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/functional/ex_cmds/write_spec.lua') diff --git a/test/functional/ex_cmds/write_spec.lua b/test/functional/ex_cmds/write_spec.lua index 7f5eba1fc8..b38ae29f7d 100644 --- a/test/functional/ex_cmds/write_spec.lua +++ b/test/functional/ex_cmds/write_spec.lua @@ -12,7 +12,7 @@ describe(':write', function() end) it('&backupcopy=auto preserves symlinks', function() - clear('set backupcopy=auto') + clear('--cmd', 'set backupcopy=auto') write_file('test_bkc_file.txt', 'content0') execute("silent !ln -s test_bkc_file.txt test_bkc_link.txt") source([[ @@ -25,7 +25,7 @@ describe(':write', function() end) it('&backupcopy=no replaces symlink with new file', function() - clear('set backupcopy=no') + clear('--cmd', 'set backupcopy=no') write_file('test_bkc_file.txt', 'content0') execute("silent !ln -s test_bkc_file.txt test_bkc_link.txt") source([[ -- cgit