diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2017-08-09 23:36:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-09 23:36:48 +0200 |
| commit | 085102fadf1c1371e863c0e9af8240038ce641e2 (patch) | |
| tree | b35a1bec0e65da69b183bb074f2dab9354c18534 /src/nvim/testdir/test_cmdline.vim | |
| parent | dac216cf8ed3e26beaa0fa252a5e8a78651dbd5b (diff) | |
| parent | f7e99fd8b09b574e21e377903503b7ea9bcdff15 (diff) | |
| download | rneovim-085102fadf1c1371e863c0e9af8240038ce641e2.tar.gz rneovim-085102fadf1c1371e863c0e9af8240038ce641e2.tar.bz2 rneovim-085102fadf1c1371e863c0e9af8240038ce641e2.zip | |
Merge #7134 from justinmk/oldtest-tmpdir
Diffstat (limited to 'src/nvim/testdir/test_cmdline.vim')
| -rw-r--r-- | src/nvim/testdir/test_cmdline.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_cmdline.vim b/src/nvim/testdir/test_cmdline.vim index 09f4b942ad..bab700284f 100644 --- a/src/nvim/testdir/test_cmdline.vim +++ b/src/nvim/testdir/test_cmdline.vim @@ -2,7 +2,7 @@ func Test_complete_tab() call writefile(['testfile'], 'Xtestfile') - call feedkeys(":e Xtest\t\r", "tx") + call feedkeys(":e Xtestf\t\r", "tx") call assert_equal('testfile', getline(1)) call delete('Xtestfile') endfunc @@ -17,7 +17,7 @@ func Test_complete_wildmenu() call writefile(['testfile1'], 'Xtestfile1') call writefile(['testfile2'], 'Xtestfile2') set wildmenu - call feedkeys(":e Xtest\t\t\r", "tx") + call feedkeys(":e Xtestf\t\t\r", "tx") call assert_equal('testfile2', getline(1)) call delete('Xtestfile1') |