Change variable in README according to the PEP8 (#1002)

* Change variable in README according to the PEP8
* Change variable in tests according to the PEP8
This commit is contained in:
vezeli 2019-09-04 10:11:07 +02:00 committed by Zsolt Dollenstein
parent 3dc461a41a
commit c4d2db4323
2 changed files with 5 additions and 5 deletions

View File

@ -178,14 +178,14 @@ great.
```py3
# in:
l = [1,
j = [1,
2,
3,
]
# out:
l = [1, 2, 3]
j = [1, 2, 3]
```
If not, *Black* will look at the contents of the first outer matching

View File

@ -1041,10 +1041,10 @@ def test_format_file_contents(self) -> None:
just_nl = "\n"
with self.assertRaises(black.NothingChanged):
black.format_file_contents(just_nl, mode=mode, fast=False)
same = "l = [1, 2, 3]\n"
same = "j = [1, 2, 3]\n"
with self.assertRaises(black.NothingChanged):
black.format_file_contents(same, mode=mode, fast=False)
different = "l = [1,2,3]"
different = "j = [1,2,3]"
expected = same
actual = black.format_file_contents(different, mode=mode, fast=False)
self.assertEqual(expected, actual)
@ -1072,7 +1072,7 @@ def err(msg: str, **kwargs: Any) -> None:
with patch("black.out", out), patch("black.err", err):
with self.assertRaises(AssertionError):
self.assertFormatEqual("l = [1, 2, 3]", "l = [1, 2, 3,]")
self.assertFormatEqual("j = [1, 2, 3]", "j = [1, 2, 3,]")
out_str = "".join(out_lines)
self.assertTrue("Expected tree:" in out_str)