Skip to content

Commit 8adc896

Browse files
committed
Shorten over-long docstrings
1 parent 975767f commit 8adc896

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_black.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1544,7 +1544,7 @@ def test_code_option_fast(self) -> None:
15441544

15451545
@pytest.mark.incompatible_with_mypyc
15461546
def test_code_option_config(self) -> None:
1547-
"""Test that the code option finds the pyproject.toml in the current directory."""
1547+
"""Test that the code option finds pyproject.toml in the current directory."""
15481548
with patch.object(black, "parse_pyproject_toml", return_value={}) as parse:
15491549
args = ["--code", "print"]
15501550
# This is the only directory known to contain a pyproject.toml
@@ -1563,7 +1563,7 @@ def test_code_option_config(self) -> None:
15631563

15641564
@pytest.mark.incompatible_with_mypyc
15651565
def test_code_option_parent_config(self) -> None:
1566-
"""Test that the code option finds the pyproject.toml in the parent directory."""
1566+
"""Test that the code option finds pyproject.toml in the parent directory."""
15671567
with patch.object(black, "parse_pyproject_toml", return_value={}) as parse:
15681568
with change_directory(THIS_DIR):
15691569
args = ["--code", "print"]

0 commit comments

Comments
 (0)