From f29ca4ebc1f1d012bea9a193cdd526f16d0ca876 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Tue, 24 May 2022 00:09:02 +0200 Subject: [PATCH] tests: workaround tomlkit regression on windows --- tests/console/commands/test_init.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/console/commands/test_init.py b/tests/console/commands/test_init.py index 4805552b2ed..49362f8069a 100644 --- a/tests/console/commands/test_init.py +++ b/tests/console/commands/test_init.py @@ -797,6 +797,7 @@ def test_init_existing_pyproject_simple( pyproject_file = source_dir / "pyproject.toml" existing_section = """ [tool.black] + line-length = 88 """ pyproject_file.write_text(decode(existing_section)) @@ -813,6 +814,7 @@ def test_init_non_interactive_existing_pyproject_add_dependency( pyproject_file = source_dir / "pyproject.toml" existing_section = """ [tool.black] + line-length = 88 """ pyproject_file.write_text(decode(existing_section))