diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2018-10-08 21:04:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-08 21:04:46 +0200 |
| commit | 05cbe0da30fa9455da7d2663e6c5b57876e55fd1 (patch) | |
| tree | f5221b18dc9f27f302896a7a57d41b816fe1d8fa /src/nvim/testdir/test_options.vim | |
| parent | 512e0caae2e5ea507608588b645b723fc4b4f9c3 (diff) | |
| parent | 1892d28c60e97e6e54ebb8bed43e42751178cbcf (diff) | |
| download | rneovim-05cbe0da30fa9455da7d2663e6c5b57876e55fd1.tar.gz rneovim-05cbe0da30fa9455da7d2663e6c5b57876e55fd1.tar.bz2 rneovim-05cbe0da30fa9455da7d2663e6c5b57876e55fd1.zip | |
Merge #9092 from janlazo/vim-8.0.1807
Diffstat (limited to 'src/nvim/testdir/test_options.vim')
| -rw-r--r-- | src/nvim/testdir/test_options.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim index 66acb79206..7b640ee2ff 100644 --- a/src/nvim/testdir/test_options.vim +++ b/src/nvim/testdir/test_options.vim @@ -262,7 +262,7 @@ func Test_set_ttytype() " in travis on some builds. Why? Catch both for now try set ttytype= - call assert_report('set ttype= did not fail') + call assert_report('set ttytype= did not fail') catch /E529\|E522/ endtry @@ -270,7 +270,7 @@ func Test_set_ttytype() " check for failure of finding the entry and for missing 'cm' entry. try set ttytype=xxx - call assert_report('set ttype=xxx did not fail') + call assert_report('set ttytype=xxx did not fail') catch /E522\|E437/ endtry |