mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-14 09:20:04 -04:00
indents(python): remove branches.py from expected failures
The previous indentation actually causes a linter warning when using pep8
This commit is contained in:
parent
dccf0f0cb8
commit
d615497e7e
2 changed files with 5 additions and 7 deletions
|
|
@ -23,7 +23,7 @@ foo(
|
||||||
b)
|
b)
|
||||||
|
|
||||||
if (a and
|
if (a and
|
||||||
b):
|
b):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
if (a
|
if (a
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
local Runner = require("tests.indent.common").Runner
|
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", {
|
local run = Runner:new(it, "tests/indent/python", {
|
||||||
tabstop = 4,
|
tabstop = 4,
|
||||||
|
|
@ -11,9 +11,7 @@ local run = Runner:new(it, "tests/indent/python", {
|
||||||
describe("indent Python:", function()
|
describe("indent Python:", function()
|
||||||
describe("whole file:", function()
|
describe("whole file:", function()
|
||||||
run:whole_file(".", {
|
run:whole_file(".", {
|
||||||
expected_failures = {
|
expected_failures = {},
|
||||||
"./branches.py",
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
end)
|
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("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 = 1, text = "arg0,", indent = 8 })
|
||||||
run:new_line("hanging_indent.py", { on_line = 5, text = "0,", indent = 4 })
|
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 = 1, text = "+ 1 \\", indent = 4 })
|
||||||
run:new_line("join_lines.py", { on_line = 4, text = "+ 1 \\", indent = 4 }, "expected failure", XFAIL)
|
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("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 = 5, text = "0,", indent = 12 })
|
||||||
run:new_line("nested_collections.py", { on_line = 6, text = ",0", indent = 12 })
|
run:new_line("nested_collections.py", { on_line = 6, text = ",0", indent = 12 })
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue