diff src/testdir/test_options.vim @ 13872:9d3ddfa88a56 v8.0.1807

patch 8.0.1807: function to set terminal name is too long commit https://github.com/vim/vim/commit/69e056915c4145b7b64c60963797692a5b293561 Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 10 14:11:52 2018 +0200 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.
author Christian Brabandt <cb@256bit.org>
date Thu, 10 May 2018 14:15:05 +0200
parents f64c5e636c9f
children fc03fabbedc5
line wrap: on
line diff
--- a/src/testdir/test_options.vim
+++ b/src/testdir/test_options.vim
@@ -284,7 +284,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
 
@@ -292,7 +292,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