diff options
author | ZyX <kp-pav@yandex.ru> | 2016-12-04 21:58:19 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-03-29 10:08:44 +0300 |
commit | 1e3e302dc2bdced563ecd2c3fb101af31f72b3df (patch) | |
tree | 20cabc51adf1f3ece86233c56e3d771d0a9bee4b /test | |
parent | 5239616297182601a5d244a482e6cef307e901f1 (diff) | |
download | rneovim-1e3e302dc2bdced563ecd2c3fb101af31f72b3df.tar.gz rneovim-1e3e302dc2bdced563ecd2c3fb101af31f72b3df.tar.bz2 rneovim-1e3e302dc2bdced563ecd2c3fb101af31f72b3df.zip |
eval: Move part of dictwatcher* functions to eval/typval
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/eval/null_spec.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/eval/null_spec.lua b/test/functional/eval/null_spec.lua index e587ede319..f72d05f2a3 100644 --- a/test/functional/eval/null_spec.lua +++ b/test/functional/eval/null_spec.lua @@ -80,8 +80,7 @@ describe('NULL', function() null_list_test('is accepted by :cexpr', 'cexpr L', 'Vim(cexpr):E777: String or List expected') -- FIXME should not error out null_list_test('is accepted by :lexpr', 'lexpr L', 'Vim(lexpr):E777: String or List expected') - -- FIXME should not error out - null_list_test('is accepted by :for', 'for x in L|throw x|endfor', 'Vim(for):E714: List required') + null_list_test('is accepted by :for', 'for x in L|throw x|endfor', 0) -- Subjectable behaviour |