diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2020-01-19 22:25:53 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-19 22:25:53 -0800 |
| commit | 270cd623efd50a22fe77a7f868ee7569e95a9acc (patch) | |
| tree | 609b3860802f2208f688a08b6bd923131a6ebc98 /src/nvim/testdir | |
| parent | 198d94da0b6ecd90911f00765f2a1fca9866524c (diff) | |
| parent | 8e385eb46a8b961a760e05b4cfa053cf713def62 (diff) | |
| download | rneovim-270cd623efd50a22fe77a7f868ee7569e95a9acc.tar.gz rneovim-270cd623efd50a22fe77a7f868ee7569e95a9acc.tar.bz2 rneovim-270cd623efd50a22fe77a7f868ee7569e95a9acc.zip | |
Merge #11735 ':tabs : show # for previous tabpage'
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_startup.vim | 4 | ||||
| -rw-r--r-- | src/nvim/testdir/test_tabpage.vim | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_startup.vim b/src/nvim/testdir/test_startup.vim index a38625cca8..15b55d35c1 100644 --- a/src/nvim/testdir/test_startup.vim +++ b/src/nvim/testdir/test_startup.vim @@ -246,7 +246,7 @@ func Test_p_arg() call assert_equal('Tab page 1', lines[0]) call assert_equal('> [No Name]', lines[1]) call assert_equal('Tab page 2', lines[2]) - call assert_equal(' [No Name]', lines[3]) + call assert_equal('# [No Name]', lines[3]) endif if RunVim([], after, '-p foo bar') @@ -255,7 +255,7 @@ func Test_p_arg() call assert_equal('Tab page 1', lines[0]) call assert_equal('> foo', lines[1]) call assert_equal('Tab page 2', lines[2]) - call assert_equal(' bar', lines[3]) + call assert_equal('# bar', lines[3]) endif call delete('Xtestout') diff --git a/src/nvim/testdir/test_tabpage.vim b/src/nvim/testdir/test_tabpage.vim index c35ddc4473..ce9f7adfef 100644 --- a/src/nvim/testdir/test_tabpage.vim +++ b/src/nvim/testdir/test_tabpage.vim @@ -548,7 +548,7 @@ func Test_tabs() norm ixxx let a=split(execute(':tabs'), "\n") call assert_equal(['Tab page 1', - \ ' [No Name]', + \ '# [No Name]', \ 'Tab page 2', \ '> + tab1'], a) |