summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_clientserver.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-11-02 19:23:03 +0100
committerBram Moolenaar <Bram@vim.org>2017-11-02 19:23:03 +0100
commitd97fbf171ec0e63117813da045d2a1c51a9b6f62 (patch)
tree50950cc1dda05d7b60097ab565fca41c2a63a724 /src/testdir/test_clientserver.vim
parentf8f8b2eadbaf3090fcfccbab560de5dbd501833d (diff)
patch 8.0.1251: invalid expressin passed to WaitFor()v8.0.1251
Problem: Invalid expressin passed to WaitFor(). Solution: Check if the variable exists.
Diffstat (limited to 'src/testdir/test_clientserver.vim')
-rw-r--r--src/testdir/test_clientserver.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_clientserver.vim b/src/testdir/test_clientserver.vim
index 811af138cd..02840de743 100644
--- a/src/testdir/test_clientserver.vim
+++ b/src/testdir/test_clientserver.vim
@@ -42,7 +42,7 @@ func Test_client_server()
call remote_foreground(name)
call remote_send(name, ":let testvar = 'yes'\<CR>")
- call WaitFor('remote_expr("' . name . '", "testvar", "", 1) == "yes"')
+ call WaitFor('remote_expr("' . name . '", "exists(\"testvar\") ? testvar : \"\"", "", 1) == "yes"')
call assert_equal('yes', remote_expr(name, "testvar", "", 2))
if has('unix') && has('gui') && !has('gui_running')