diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-03-03 06:23:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 06:23:10 +0800 |
commit | 85de9b06ed529ee60beb06c2e54b0c517463f28a (patch) | |
tree | f9ecaf9044ca020a3b83b27310370a68b7829d5d /test/functional/terminal/helpers.lua | |
parent | d477788cd5bfd36b6be88e4ea736e5053369252b (diff) | |
parent | ede4eac61f48bb685ab420830481393711d9f0d3 (diff) | |
download | rneovim-85de9b06ed529ee60beb06c2e54b0c517463f28a.tar.gz rneovim-85de9b06ed529ee60beb06c2e54b0c517463f28a.tar.bz2 rneovim-85de9b06ed529ee60beb06c2e54b0c517463f28a.zip |
Merge pull request #17578 from zeertzjq/test-warning-poke
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 |