diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-06 00:28:00 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-06 00:28:00 +0200 |
commit | f6c94124368bd14a83e83d4f172b8939d0503daf (patch) | |
tree | a617f9ea63c3d7bc0524602630956c729b071eb5 /test/unit/mbyte_spec.lua | |
parent | 330a6713bf888b1b612a1ebebb5d95bb0b31cd53 (diff) | |
download | rneovim-f6c94124368bd14a83e83d4f172b8939d0503daf.tar.gz rneovim-f6c94124368bd14a83e83d4f172b8939d0503daf.tar.bz2 rneovim-f6c94124368bd14a83e83d4f172b8939d0503daf.zip |
test/mbyte_spec: skip broken test on QuickBuild
Forgot `return` in eec529cf9e13.
Diffstat (limited to 'test/unit/mbyte_spec.lua')
-rw-r--r-- | test/unit/mbyte_spec.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/unit/mbyte_spec.lua b/test/unit/mbyte_spec.lua index 1ff1bed9fe..d27f52923a 100644 --- a/test/unit/mbyte_spec.lua +++ b/test/unit/mbyte_spec.lua @@ -10,6 +10,7 @@ local charset = helpers.cimport('./src/nvim/charset.h') describe('mbyte', function() if helpers.isCI('quickbuild') then pending("crashes on quickbuild", function() end) + return end -- Array for composing characters |