diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-10-06 00:19:39 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-10-06 11:36:12 -0400 |
commit | 22804c66a536ac7298b89c6ac92b1b29779d186c (patch) | |
tree | 109518b53897321df7ac34be83df83fff45b7479 | |
parent | 6fe9a12268c9e7d23f03f9fb1841c9bfebdb1bf3 (diff) | |
download | rneovim-22804c66a536ac7298b89c6ac92b1b29779d186c.tar.gz rneovim-22804c66a536ac7298b89c6ac92b1b29779d186c.tar.bz2 rneovim-22804c66a536ac7298b89c6ac92b1b29779d186c.zip |
vim-patch:8.0.1807: function to set terminal name is too long
Problem: Function to set terminal name is too long.
Solution: Refactor the function. Fix typo in test.
https://github.com/vim/vim/commit/69e056915c4145b7b64c60963797692a5b293561
-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 |