aboutsummaryrefslogtreecommitdiff
path: root/test/functional/terminal/buffer_spec.lua
diff options
context:
space:
mode:
authorDylan Armstrong <dylan@dylan.is>2021-02-27 10:02:56 -0600
committerDylan Armstrong <dylan@dylan.is>2021-02-27 10:02:56 -0600
commit6646280d1a7a110cdc41edbc944ccdd05326fa6c (patch)
tree834b9d51d957b1d6b5e3ad88e0bd172ea07beb4b /test/functional/terminal/buffer_spec.lua
parent1d4a7c60391de69af21502b09e4f00ecb01b4bf9 (diff)
downloadrneovim-6646280d1a7a110cdc41edbc944ccdd05326fa6c.tar.gz
rneovim-6646280d1a7a110cdc41edbc944ccdd05326fa6c.tar.bz2
rneovim-6646280d1a7a110cdc41edbc944ccdd05326fa6c.zip
chore: revert unrelated changes in test
Diffstat (limited to 'test/functional/terminal/buffer_spec.lua')
-rw-r--r--test/functional/terminal/buffer_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/terminal/buffer_spec.lua b/test/functional/terminal/buffer_spec.lua
index 297678a531..c61bf108cb 100644
--- a/test/functional/terminal/buffer_spec.lua
+++ b/test/functional/terminal/buffer_spec.lua
@@ -284,7 +284,7 @@ describe('No heap-buffer-overflow when using', function()
feed('$')
-- Let termopen() modify the buffer
feed_command('call termopen("echo")')
- helpers.assert_alive()
+ eq(2, eval('1+1')) -- check nvim still running
feed_command('bdelete!')
end)
end)
@@ -294,6 +294,6 @@ describe('No heap-buffer-overflow when', function()
feed_command('set nowrap')
feed_command('autocmd TermOpen * startinsert')
feed_command('call feedkeys("4000ai\\<esc>:terminal!\\<cr>")')
- helpers.assert_alive()
+ eq(2, eval('1+1'))
end)
end)