From: vezeli <37907135+vezeli@users.noreply.github.com> Date: Wed, 4 Sep 2019 08:11:07 +0000 (+0200) Subject: Change variable in README according to the PEP8 (#1002) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/c4d2db43231cb927c89a403e2837b7fee92a6ad5 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 --- diff --git a/README.md b/README.md index 0d535d9..7aa988a 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/tests/test_black.py b/tests/test_black.py index 3b37011..66a0761 100644 --- a/tests/test_black.py +++ b/tests/test_black.py @@ -1041,10 +1041,10 @@ class BlackTestCase(unittest.TestCase): 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 @@ class BlackTestCase(unittest.TestCase): 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)