aboutsummaryrefslogtreecommitdiff
path: root/test/functional/shell/viml_system_spec.lua
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2015-02-12 19:16:25 +0100
committerJustin M. Keyes <justinkz@gmail.com>2015-02-16 20:13:54 -0500
commitf4f0f646c33151baff90ac632791568364a9a62c (patch)
treee4d4bb33444bbcf66a94b33bc2dbe939ce85b09f /test/functional/shell/viml_system_spec.lua
parentf56d1dc838302c1cf0967724bf15a2136c37ef71 (diff)
downloadrneovim-f4f0f646c33151baff90ac632791568364a9a62c.tar.gz
rneovim-f4f0f646c33151baff90ac632791568364a9a62c.tar.bz2
rneovim-f4f0f646c33151baff90ac632791568364a9a62c.zip
api: always return empty string as api type String
Diffstat (limited to 'test/functional/shell/viml_system_spec.lua')
-rw-r--r--test/functional/shell/viml_system_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/shell/viml_system_spec.lua b/test/functional/shell/viml_system_spec.lua
index d24646e712..b35f070159 100644
--- a/test/functional/shell/viml_system_spec.lua
+++ b/test/functional/shell/viml_system_spec.lua
@@ -191,7 +191,7 @@ describe('system()', function()
if xclip then
describe("with a program that doesn't close stdout", function()
it('will exit properly after passing input', function()
- eq(nil, eval([[system('xclip -i -selection clipboard', 'clip-data')]]))
+ eq('', eval([[system('xclip -i -selection clipboard', 'clip-data')]]))
eq('clip-data', eval([[system('xclip -o -selection clipboard')]]))
end)
end)