aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_python3.vim
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/testdir/test_python3.vim')
-rw-r--r--src/nvim/testdir/test_python3.vim7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/nvim/testdir/test_python3.vim b/src/nvim/testdir/test_python3.vim
index 948ef0a07f..108f78f976 100644
--- a/src/nvim/testdir/test_python3.vim
+++ b/src/nvim/testdir/test_python3.vim
@@ -174,7 +174,6 @@ func Test_Catch_Exception_Message()
endfunc
func Test_unicode()
- throw 'skipped: Nvim does not support "termencoding" option and only supports "utf-8" for "encoding" option'
" this crashed Vim once
if &tenc != ''
throw "Skipped: 'termencoding' is not empty"
@@ -186,10 +185,10 @@ func Test_unicode()
if !has('win32')
set encoding=debug
py3 print('hello')
- endif
- set encoding=euc-tw
- py3 print('hello')
+ set encoding=euc-tw
+ py3 print('hello')
+ endif
set encoding=utf8
endfunc