From 3046f4499bdbe8dd3c79aee987498e644a5d6a4a Mon Sep 17 00:00:00 2001 From: lonerover Date: Sun, 20 May 2018 10:21:32 +0800 Subject: vim-patch:8.0.0491: quotestar test fails when features are missing Problem: The quotestar test fails when a required feature is missing. Solution: Prepend "Skipped" to the thrown exception. https://github.com/vim/vim/commit/bfd830d3e2dbd1e9b14c65625f18773074e6ac67 --- src/nvim/testdir/test_quotestar.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/testdir') diff --git a/src/nvim/testdir/test_quotestar.vim b/src/nvim/testdir/test_quotestar.vim index 300a964731..111a226b65 100644 --- a/src/nvim/testdir/test_quotestar.vim +++ b/src/nvim/testdir/test_quotestar.vim @@ -134,6 +134,6 @@ func Test_quotestar() let @* = quotestar_saved if !empty(skipped) - throw skipped + throw 'Skipped: ' . skipped endif endfunc -- cgit