diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-11-13 19:21:07 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-13 19:21:07 -0600 |
commit | 582d7f47905d82f315dc852a9d2937cd5b655e55 (patch) | |
tree | 2a8b82a0bb4e7079dc6c5be33f00c360e9547c6b /test/functional/api/ui_spec.lua | |
parent | 28f4f3c48498086307ed825d1761edb5789ca0e8 (diff) | |
parent | 22eb2ba18336df6cd70a88f666818ee5d8ba92d2 (diff) | |
download | rneovim-582d7f47905d82f315dc852a9d2937cd5b655e55.tar.gz rneovim-582d7f47905d82f315dc852a9d2937cd5b655e55.tar.bz2 rneovim-582d7f47905d82f315dc852a9d2937cd5b655e55.zip |
Merge pull request #25918 from gpanders/background-color
Diffstat (limited to 'test/functional/api/ui_spec.lua')
-rw-r--r-- | test/functional/api/ui_spec.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/functional/api/ui_spec.lua b/test/functional/api/ui_spec.lua index a668d47448..6efb6726fe 100644 --- a/test/functional/api/ui_spec.lua +++ b/test/functional/api/ui_spec.lua @@ -36,8 +36,6 @@ describe('nvim_ui_attach()', function() pcall_err(meths.ui_attach, 80, 24, { term_name=true })) eq("Invalid 'term_colors': expected Integer, got Boolean", pcall_err(meths.ui_attach, 80, 24, { term_colors=true })) - eq("Invalid 'term_background': expected String, got Boolean", - pcall_err(meths.ui_attach, 80, 24, { term_background=true })) eq("Invalid 'stdin_fd': expected Integer, got String", pcall_err(meths.ui_attach, 80, 24, { stdin_fd='foo' })) eq("Invalid 'stdin_tty': expected Boolean, got String", |