diff options
author | ckelsel <ckelsel@hotmail.com> | 2017-10-27 21:49:28 +0800 |
---|---|---|
committer | ckelsel <ckelsel@hotmail.com> | 2017-10-27 21:49:28 +0800 |
commit | 20f1bf325cf82ab80206115231e8aeed27253bf5 (patch) | |
tree | c7521ad5684db15b0db2f5834e7c30af9841bbc0 | |
parent | 45a95a8a5b75473bf9d8f707ed10794ae4ae1528 (diff) | |
download | rneovim-20f1bf325cf82ab80206115231e8aeed27253bf5.tar.gz rneovim-20f1bf325cf82ab80206115231e8aeed27253bf5.tar.bz2 rneovim-20f1bf325cf82ab80206115231e8aeed27253bf5.zip |
fix TEST_FILE=test_profile.res make oldtest failed
-rw-r--r-- | src/nvim/testdir/test_profile.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_profile.vim b/src/nvim/testdir/test_profile.vim index 5f15d51b47..f58dba9b14 100644 --- a/src/nvim/testdir/test_profile.vim +++ b/src/nvim/testdir/test_profile.vim @@ -133,7 +133,7 @@ endfunc func Test_profile_completion() call feedkeys(":profile \<C-A>\<C-B>\"\<CR>", 'tx') - call assert_equal('"profile continue file func pause start', @:) + call assert_equal('"profile continue dump file func pause start stop', @:) call feedkeys(":profile start test_prof\<C-A>\<C-B>\"\<CR>", 'tx') call assert_match('^"profile start.* test_profile\.vim', @:) |