X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/6b5753a41781ef7a8746aeea52c26e07f4b43c27..811decd7f10fb2fb3ae343b9d9d0a3ae53b86a53:/tests/test_black.py?ds=sidebyside diff --git a/tests/test_black.py b/tests/test_black.py index edcf720..e928dc0 100644 --- a/tests/test_black.py +++ b/tests/test_black.py @@ -1574,7 +1574,6 @@ class BlackTestCase(unittest.TestCase): black.assert_stable(source, actual, DEFAULT_MODE) def test_single_file_force_pyi(self) -> None: - reg_mode = DEFAULT_MODE pyi_mode = replace(DEFAULT_MODE, is_pyi=True) contents, expected = read_data("force_pyi") with cache_dir() as workspace: @@ -1587,9 +1586,11 @@ class BlackTestCase(unittest.TestCase): # verify cache with --pyi is separate pyi_cache = black.read_cache(pyi_mode) self.assertIn(path, pyi_cache) - normal_cache = black.read_cache(reg_mode) + normal_cache = black.read_cache(DEFAULT_MODE) self.assertNotIn(path, normal_cache) - self.assertEqual(actual, expected) + self.assertFormatEqual(expected, actual) + black.assert_equivalent(contents, actual) + black.assert_stable(contents, actual, pyi_mode) @event_loop() def test_multi_file_force_pyi(self) -> None: