From 073e4b92e613d22ce7b16e0fbf5c0e40cb5f9b2c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 18 Aug 2019 23:01:56 +0200 Subject: patch 8.1.1888: more functions can be used as methods Problem: More functions can be used as methods. Solution: Make various functions usable as a method. --- src/testdir/test_balloon_gui.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/testdir/test_balloon_gui.vim') diff --git a/src/testdir/test_balloon_gui.vim b/src/testdir/test_balloon_gui.vim index 5b486c0b7..70a88f36f 100644 --- a/src/testdir/test_balloon_gui.vim +++ b/src/testdir/test_balloon_gui.vim @@ -12,7 +12,7 @@ func Test_balloon_show_gui() call balloon_show('') let msg = 'that that' - call balloon_show(msg) + eval msg->balloon_show() call assert_equal(msg, balloon_gettext()) sleep 10m call balloon_show('') -- cgit v1.2.1