diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-03-02 22:30:35 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-03-02 22:31:20 +0800 |
commit | ede4eac61f48bb685ab420830481393711d9f0d3 (patch) | |
tree | 3996321c530d901e7758f13aa3de158e231eabfe /test/functional/terminal/helpers.lua | |
parent | 4b3f920477e9838c3f3a9cd67a47d1494b9cc229 (diff) | |
download | rneovim-ede4eac61f48bb685ab420830481393711d9f0d3.tar.gz rneovim-ede4eac61f48bb685ab420830481393711d9f0d3.tar.bz2 rneovim-ede4eac61f48bb685ab420830481393711d9f0d3.zip |
test: mention poke_eventloop() instead of wait()
Diffstat (limited to 'test/functional/terminal/helpers.lua')
-rw-r--r-- | test/functional/terminal/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/terminal/helpers.lua b/test/functional/terminal/helpers.lua index d909888613..c5315d0185 100644 --- a/test/functional/terminal/helpers.lua +++ b/test/functional/terminal/helpers.lua @@ -94,7 +94,7 @@ local function screen_setup(extra_rows, command, cols, opts) table.insert(expected, '{3:-- TERMINAL --}' .. ((' '):rep(cols - 14))) screen:expect(table.concat(expected, '|\n')..'|') else - -- This eval also acts as a wait(). + -- This eval also acts as a poke_eventloop(). if 0 == nvim('eval', "exists('b:terminal_job_id')") then error("terminal job failed to start") end |