aboutsummaryrefslogtreecommitdiff
path: root/test/unit
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-12-31 14:23:24 +0100
committerGitHub <noreply@github.com>2022-12-31 14:23:24 +0100
commitcce736218f465511194465410e1ba23b5530e46f (patch)
tree02f488ea361a4fba8aec92e44193d8627836cd55 /test/unit
parent99cf111289bfcd14981255e805da43bac5139141 (diff)
parent9fdcbbb4063daa125e420e0ffe9dae6801c264bc (diff)
downloadrneovim-cce736218f465511194465410e1ba23b5530e46f.tar.gz
rneovim-cce736218f465511194465410e1ba23b5530e46f.tar.bz2
rneovim-cce736218f465511194465410e1ba23b5530e46f.zip
Merge pull request #18375 from bfredl/tui_rework
feat(ui): refactor TUI from thread to separate process
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/tui_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/tui_spec.lua b/test/unit/tui_spec.lua
index 36ce4a1493..15b019edd1 100644
--- a/test/unit/tui_spec.lua
+++ b/test/unit/tui_spec.lua
@@ -33,7 +33,7 @@ itp('handle_background_color', function()
term_input.waiting_for_bg_response = 1
eq(kComplete, handle_background_color(term_input))
eq(0, term_input.waiting_for_bg_response)
- eq(1, multiqueue.multiqueue_size(events))
+ eq(0, multiqueue.multiqueue_size(events))
local event = multiqueue.multiqueue_get(events)
local bg_event = ffi.cast("Event*", event.argv[1])