summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorThePrimeagen <the.primeagen@gmail.com>2026-03-24 10:47:58 -0600
committerGitHub <noreply@github.com>2026-03-24 10:47:58 -0600
commit0172d3caae2d8b967c9d47aa7557295f1481e5df (patch)
tree8b979fba7a5d64f6ca30c116aa14d8e0c6607ef6 /lua
parente8185fe7f115689131dfb80a05f07495c77e2545 (diff)
parent211e10503dcecb0d9cba416ad1f579e0affe0a30 (diff)
downloada4-0172d3caae2d8b967c9d47aa7557295f1481e5df.tar.xz
a4-0172d3caae2d8b967c9d47aa7557295f1481e5df.zip
Merge pull request #153 from boogie-bugarschi/fix_tests
fix: the tests
Diffstat (limited to 'lua')
-rw-r--r--lua/99/test/window_spec.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/lua/99/test/window_spec.lua b/lua/99/test/window_spec.lua
index 3f5c3c8..f7b1376 100644
--- a/lua/99/test/window_spec.lua
+++ b/lua/99/test/window_spec.lua
@@ -27,9 +27,8 @@ describe("Window", function()
["<CR>"] = "submit",
},
})
-
eq(2, #Window.active_windows)
- eq(1, vim.wo[win.win_id].scrolloff)
+ eq(3, vim.wo[win.win_id].scrolloff)
local legend = Window.active_windows[2]
local lines = vim.api.nvim_buf_get_lines(legend.buf_id, 0, -1, false)