diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-12-07 07:15:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 07:15:37 +0800 |
commit | 6b00b8a369480a6535e7d286dd6ea27a6b0c94a5 (patch) | |
tree | 320c5d780b43764edd7bb53709c68e89289706b2 /test/functional/terminal/window_spec.lua | |
parent | 8bb5089974e14f043a0b0c17e4d38dbd0b9a9ab2 (diff) | |
download | rneovim-6b00b8a369480a6535e7d286dd6ea27a6b0c94a5.tar.gz rneovim-6b00b8a369480a6535e7d286dd6ea27a6b0c94a5.tar.bz2 rneovim-6b00b8a369480a6535e7d286dd6ea27a6b0c94a5.zip |
test(terminal): remove unnecessary string operations (#26434)
Diffstat (limited to 'test/functional/terminal/window_spec.lua')
-rw-r--r-- | test/functional/terminal/window_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/terminal/window_spec.lua b/test/functional/terminal/window_spec.lua index 39fc2c2562..57f1c881b7 100644 --- a/test/functional/terminal/window_spec.lua +++ b/test/functional/terminal/window_spec.lua @@ -179,7 +179,7 @@ describe(':terminal with multigrid', function() before_each(function() clear() - screen = thelpers.screen_setup(0,nil,50,{ext_multigrid=true}) + screen = thelpers.screen_setup(0, nil, 50, nil, {ext_multigrid=true}) end) it('resizes to requested size', function() |