diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/functional/core/job_spec.lua | 4 | ||||
| -rw-r--r-- | test/functional/terminal/ex_terminal_spec.lua | 28 | ||||
| -rw-r--r-- | test/functional/terminal/tui_spec.lua | 8 | 
3 files changed, 20 insertions, 20 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua index 54e56f7f41..1b8a5b1b95 100644 --- a/test/functional/core/job_spec.lua +++ b/test/functional/core/job_spec.lua @@ -677,12 +677,12 @@ describe("pty process teardown", function()      -- Exiting should terminate all descendants (PTY, its children, ...).      screen:expect([[ -                                    | +      ^                              |        [Process exited 0]            |                                      |                                      |                                      | -      -- TERMINAL --                | +                                    |      ]])    end)  end) diff --git a/test/functional/terminal/ex_terminal_spec.lua b/test/functional/terminal/ex_terminal_spec.lua index 9930efc402..7522f073c4 100644 --- a/test/functional/terminal/ex_terminal_spec.lua +++ b/test/functional/terminal/ex_terminal_spec.lua @@ -72,10 +72,10 @@ describe(':terminal (with fake shell)', function()      terminal_with_fake_shell()      wait()      screen:expect([[ -      ready $                                           | +      ^ready $                                           |        [Process exited 0]                                |                                                          | -      -- TERMINAL --                                    | +      :terminal                                         |      ]])    end) @@ -96,10 +96,10 @@ describe(':terminal (with fake shell)', function()      terminal_with_fake_shell()      wait()      screen:expect([[ -      jeff $                                            | +      ^jeff $                                            |        [Process exited 0]                                |                                                          | -      -- TERMINAL --                                    | +      :terminal                                         |      ]])    end) @@ -107,10 +107,10 @@ describe(':terminal (with fake shell)', function()      terminal_with_fake_shell('echo hi')      wait()      screen:expect([[ -      ready $ echo hi                                   | +      ^ready $ echo hi                                   |                                                          |        [Process exited 0]                                | -      -- TERMINAL --                                    | +      :terminal echo hi                                 |      ]])    end) @@ -119,10 +119,10 @@ describe(':terminal (with fake shell)', function()      terminal_with_fake_shell('echo hi')      wait()      screen:expect([[ -      jeff $ echo hi                                    | +      ^jeff $ echo hi                                    |                                                          |        [Process exited 0]                                | -      -- TERMINAL --                                    | +      :terminal echo hi                                 |      ]])    end) @@ -130,10 +130,10 @@ describe(':terminal (with fake shell)', function()      terminal_with_fake_shell([[echo 'hello' \ "world"]])      wait()      screen:expect([[ -      ready $ echo 'hello' \ "world"                    | +      ^ready $ echo 'hello' \ "world"                    |                                                          |        [Process exited 0]                                | -      -- TERMINAL --                                    | +      :terminal echo 'hello' \ "world"                  |      ]])    end) @@ -166,10 +166,10 @@ describe(':terminal (with fake shell)', function()      terminal_with_fake_shell()      wait()      screen:expect([[ -      ready $                                           | +      ^ready $                                           |        [Process exited 0]                                |                                                          | -      -- TERMINAL --                                    | +      :terminal                                         |      ]])      eq('term://', string.match(eval('bufname("%")'), "^term://"))      helpers.feed([[<C-\><C-N>]]) @@ -184,10 +184,10 @@ describe(':terminal (with fake shell)', function()    it('works with gf', function()      terminal_with_fake_shell([[echo "scripts/shadacat.py"]])      screen:expect([[ -      ready $ echo "scripts/shadacat.py"                | +      ^ready $ echo "scripts/shadacat.py"                |                                                          |        [Process exited 0]                                | -      -- TERMINAL --                                    | +      :terminal echo "scripts/shadacat.py"              |      ]])      helpers.feed([[<C-\><C-N>]])      eq('term://', string.match(eval('bufname("%")'), "^term://")) diff --git a/test/functional/terminal/tui_spec.lua b/test/functional/terminal/tui_spec.lua index 21b907c8f7..34a5ac0a49 100644 --- a/test/functional/terminal/tui_spec.lua +++ b/test/functional/terminal/tui_spec.lua @@ -287,8 +287,8 @@ describe('tui focus event handling', function()        feed_data(':terminal\n')        feed_data('\027[I')        screen:expect([[ -        ready $                                           | -        [Process exited 0]{1: }                               | +        {1:r}eady $                                           | +        [Process exited 0]                                |                                                            |                                                            |                                                            | @@ -297,8 +297,8 @@ describe('tui focus event handling', function()        ]])        feed_data('\027[O')        screen:expect([[ -        ready $                                           | -        [Process exited 0]{1: }                               | +        {1:r}eady $                                           | +        [Process exited 0]                                |                                                            |                                                            |                                                            |  | 
