aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-01-03 07:13:45 -0500
committerJustin M. Keyes <justinkz@gmail.com>2020-01-03 04:13:45 -0800
commit94cc8a20b42bfa6ef5a344361cd7311cb6036b56 (patch)
tree126fe65b32d20a037125c79c6180e622107d7b48
parent77b61cb0dff55318fdec9e28ccbaedd051996c5a (diff)
downloadrneovim-94cc8a20b42bfa6ef5a344361cd7311cb6036b56.tar.gz
rneovim-94cc8a20b42bfa6ef5a344361cd7311cb6036b56.tar.bz2
rneovim-94cc8a20b42bfa6ef5a344361cd7311cb6036b56.zip
vim-patch:8.2.0079: test still fails on MS-Windows #11663
Problem: Python 3 unicode test still fails on MS-Windows. Solution: Do not set 'encoding' to "euc-tw" on MS-Windows. https://github.com/vim/vim/commit/7fc4785ea19306b7e94beb61f226cf40c32b1aba
-rw-r--r--src/nvim/testdir/test_python3.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_python3.vim b/src/nvim/testdir/test_python3.vim
index d0f80b8958..108f78f976 100644
--- a/src/nvim/testdir/test_python3.vim
+++ b/src/nvim/testdir/test_python3.vim
@@ -185,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