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/ui/cmdline_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/ui/cmdline_spec.lua')
-rw-r--r-- | test/functional/ui/cmdline_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/cmdline_spec.lua b/test/functional/ui/cmdline_spec.lua index ea68d9a431..f9769c706f 100644 --- a/test/functional/ui/cmdline_spec.lua +++ b/test/functional/ui/cmdline_spec.lua @@ -828,7 +828,7 @@ describe('cmdline redraw', function() end) it('with <Cmd>', function() - if 'openbsd' == string.lower(helpers.uname()) then + if 'openbsd' == helpers.uname() then pending('FIXME #10804', function() end) return end |