aboutsummaryrefslogtreecommitdiffstats
path: root/lua/tests/indent/python_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/tests/indent/python_spec.lua')
-rw-r--r--lua/tests/indent/python_spec.lua9
1 files changed, 8 insertions, 1 deletions
diff --git a/lua/tests/indent/python_spec.lua b/lua/tests/indent/python_spec.lua
index 9fcdf4637..70017bde1 100644
--- a/lua/tests/indent/python_spec.lua
+++ b/lua/tests/indent/python_spec.lua
@@ -14,6 +14,13 @@ describe('indent python', function()
'strings.py',
}
for _, file in ipairs(files) do
- it(file, function() whole_file('lua/tests/indent/python/' .. file) end)
+ it(file, function()
+ whole_file('lua/tests/indent/python/' .. file, {
+ tabstop = 4,
+ shiftwidth = 4,
+ softtabstop = 0,
+ expandtab = true,
+ })
+ end)
end
end)