aboutsummaryrefslogtreecommitdiff
path: root/test/functional/provider/python3_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-01-13 02:33:47 +0100
committerGitHub <noreply@github.com>2019-01-13 02:33:47 +0100
commit7523eb3ce46188df0c6f30ff7b0cfb1b87acc391 (patch)
treeff118183fe75981455255e30e672779f83acea8a /test/functional/provider/python3_spec.lua
parentdaad3a5a79c96090f929d63d7d7c0e80f2077566 (diff)
parent8a7b6200fbaaafa13c1425faacecbd779d05d729 (diff)
downloadrneovim-7523eb3ce46188df0c6f30ff7b0cfb1b87acc391.tar.gz
rneovim-7523eb3ce46188df0c6f30ff7b0cfb1b87acc391.tar.bz2
rneovim-7523eb3ce46188df0c6f30ff7b0cfb1b87acc391.zip
Merge #9495 from justinmk/release-0.3
release candidate 0.3.4
Diffstat (limited to 'test/functional/provider/python3_spec.lua')
-rw-r--r--test/functional/provider/python3_spec.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/functional/provider/python3_spec.lua b/test/functional/provider/python3_spec.lua
index 5e73690986..3a33109079 100644
--- a/test/functional/provider/python3_spec.lua
+++ b/test/functional/provider/python3_spec.lua
@@ -11,8 +11,9 @@ do
clear()
if missing_provider('python3') then
it(':python3 reports E319 if provider is missing', function()
- expect_err([[Vim%(python3%):E319: No "python3" provider found.*]],
- command, 'python3 print("foo")')
+ local expected = [[Vim%(py3.*%):E319: No "python3" provider found.*]]
+ expect_err(expected, command, 'py3 print("foo")')
+ expect_err(expected, command, 'py3file foo')
end)
pending('Python 3 (or the pynvim module) is broken/missing', function() end)
return