diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-09-01 21:21:26 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-09-01 22:49:33 -0700 |
commit | ead39d6ce6d1c5e5b6130c6823d071889c207bde (patch) | |
tree | 0a1b0b8707e6a951e3318bfbba80a1764749a2dd /test/functional/core/channels_spec.lua | |
parent | 7d2090772488e9d57532c2f3d72438370027d3b9 (diff) | |
download | rneovim-ead39d6ce6d1c5e5b6130c6823d071889c207bde.tar.gz rneovim-ead39d6ce6d1c5e5b6130c6823d071889c207bde.tar.bz2 rneovim-ead39d6ce6d1c5e5b6130c6823d071889c207bde.zip |
test/uname(): always lowercase
Diffstat (limited to 'test/functional/core/channels_spec.lua')
-rw-r--r-- | test/functional/core/channels_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/core/channels_spec.lua b/test/functional/core/channels_spec.lua index 30dcb6d7b4..852d9808f5 100644 --- a/test/functional/core/channels_spec.lua +++ b/test/functional/core/channels_spec.lua @@ -139,7 +139,7 @@ describe('channels', function() command("call chansend(id, 'incomplet\004')") - local is_bsd = not not string.find(string.lower(uname()), 'bsd') + local is_bsd = not not string.find(uname(), 'bsd') local bsdlike = is_bsd or (os_name() == "osx") local extra = bsdlike and "^D\008\008" or "" expect_twoline(id, "stdout", |