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))