aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Seitz <stephan.seitz@fau.de>2022-01-23 15:50:21 +0100
committerStephan Seitz <stephan.seitz@fau.de>2022-02-05 18:54:55 +0100
commitd615497e7ef6765eb4ba37bd122c0cd7c77447f8 (patch)
tree6dc77f2750cad828878231da64c8f9f206a76123
parentindents(c): indent always after init_declarator (diff)
downloadnvim-treesitter-d615497e7ef6765eb4ba37bd122c0cd7c77447f8.tar
nvim-treesitter-d615497e7ef6765eb4ba37bd122c0cd7c77447f8.tar.gz
nvim-treesitter-d615497e7ef6765eb4ba37bd122c0cd7c77447f8.tar.bz2
nvim-treesitter-d615497e7ef6765eb4ba37bd122c0cd7c77447f8.tar.lz
nvim-treesitter-d615497e7ef6765eb4ba37bd122c0cd7c77447f8.tar.xz
nvim-treesitter-d615497e7ef6765eb4ba37bd122c0cd7c77447f8.tar.zst
nvim-treesitter-d615497e7ef6765eb4ba37bd122c0cd7c77447f8.zip
indents(python): remove branches.py from expected failures
The previous indentation actually causes a linter warning when using pep8
-rw-r--r--tests/indent/python/branches.py2
-rw-r--r--tests/indent/python_spec.lua10
2 files changed, 5 insertions, 7 deletions
diff --git a/tests/indent/python/branches.py b/tests/indent/python/branches.py
index 474ec5b63..00c47a224 100644
--- a/tests/indent/python/branches.py
+++ b/tests/indent/python/branches.py
@@ -23,7 +23,7 @@ foo(
b)
if (a and
- b):
+ b):
pass
if (a
diff --git a/tests/indent/python_spec.lua b/tests/indent/python_spec.lua
index da8a97b67..07ec0e520 100644
--- a/tests/indent/python_spec.lua
+++ b/tests/indent/python_spec.lua
@@ -1,5 +1,5 @@
local Runner = require("tests.indent.common").Runner
-local XFAIL = require("tests.indent.common").XFAIL
+--local XFAIL = require("tests.indent.common").XFAIL
local run = Runner:new(it, "tests/indent/python", {
tabstop = 4,
@@ -11,9 +11,7 @@ local run = Runner:new(it, "tests/indent/python", {
describe("indent Python:", function()
describe("whole file:", function()
run:whole_file(".", {
- expected_failures = {
- "./branches.py",
- },
+ expected_failures = {},
})
end)
@@ -29,8 +27,8 @@ describe("indent Python:", function()
run:new_line("control_flow.py", { on_line = 22, text = "x = 4", indent = 4 })
run:new_line("hanging_indent.py", { on_line = 1, text = "arg0,", indent = 8 })
run:new_line("hanging_indent.py", { on_line = 5, text = "0,", indent = 4 })
- run:new_line("join_lines.py", { on_line = 1, text = "+ 1 \\", indent = 4 }, "expected failure", XFAIL)
- run:new_line("join_lines.py", { on_line = 4, text = "+ 1 \\", indent = 4 }, "expected failure", XFAIL)
+ run:new_line("join_lines.py", { on_line = 1, text = "+ 1 \\", indent = 4 })
+ run:new_line("join_lines.py", { on_line = 4, text = "+ 1 \\", indent = 4 })
run:new_line("join_lines.py", { on_line = 7, text = "+ 1 \\", indent = 4 })
run:new_line("nested_collections.py", { on_line = 5, text = "0,", indent = 12 })
run:new_line("nested_collections.py", { on_line = 6, text = ",0", indent = 12 })