diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-09-06 22:41:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 22:41:37 +0200 |
commit | 694ac269468fce8a5e02f0aceb46dbee5528a9d7 (patch) | |
tree | 3fb4fdbb498afadd03dce347a6e90090ac1ad533 /test | |
parent | 74a8b5982a27cdccc6505343a9feeba1b3e74e31 (diff) | |
parent | b76e33b5989dcdbc48cdb6f099c9c0c917efa610 (diff) | |
download | rneovim-694ac269468fce8a5e02f0aceb46dbee5528a9d7.tar.gz rneovim-694ac269468fce8a5e02f0aceb46dbee5528a9d7.tar.bz2 rneovim-694ac269468fce8a5e02f0aceb46dbee5528a9d7.zip |
Merge pull request #17329 from cryptomilk/asn-vterm-0-2
build(deps): bump libvterm to 0.3-RC1
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/terminal/altscreen_spec.lua | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/test/functional/terminal/altscreen_spec.lua b/test/functional/terminal/altscreen_spec.lua index 155a156d15..e4e1aa5fa2 100644 --- a/test/functional/terminal/altscreen_spec.lua +++ b/test/functional/terminal/altscreen_spec.lua @@ -126,13 +126,13 @@ describe(':terminal altscreen', function() wait_removal() feed('<c-\\><c-n>4k') screen:expect([[ - ^line3 | + ^ | | | rows: 4, cols: 50 | | ]]) - eq(8, curbuf('line_count')) + eq(9, curbuf('line_count')) end) describe('and after exit', function() @@ -142,15 +142,11 @@ describe(':terminal altscreen', function() end) it('restore buffer state', function() - -- FIXME(tarruda): Note that the last line was lost after restoring the - -- screen. This is a libvterm bug: When the main screen is restored it - -- seems to "cut" lines that would have been left below the new visible - -- screen. screen:expect([[ - line4 | line5 | line6 | line7 | + line8 | {3:-- TERMINAL --} | ]]) end) |