X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/4809e365d43ff5f837f9dacbc1f3d04975fe35e8..f6643c4f0cfbae1f2493fdfce46cfbae3d26f46b:/tests/test_black.py diff --git a/tests/test_black.py b/tests/test_black.py index 1d759f2..b3f1f82 100644 --- a/tests/test_black.py +++ b/tests/test_black.py @@ -289,7 +289,7 @@ class BlackTestCase(unittest.TestCase): msg = ( f"Expected diff isn't equal to the actual. If you made changes " f"to expression.py and this is an anticipated difference, " - f"overwrite tests/expression.diff with {dump}" + f"overwrite tests/data/expression.diff with {dump}" ) self.assertEqual(expected, actual, msg) @@ -362,6 +362,14 @@ class BlackTestCase(unittest.TestCase): black.assert_equivalent(source, actual) black.assert_stable(source, actual, line_length=ll) + @patch("black.dump_to_file", dump_to_stderr) + def test_comments6(self) -> None: + source, expected = read_data("comments6") + actual = fs(source) + self.assertFormatEqual(expected, actual) + black.assert_equivalent(source, actual) + black.assert_stable(source, actual, line_length=ll) + @patch("black.dump_to_file", dump_to_stderr) def test_cantfit(self) -> None: source, expected = read_data("cantfit")