[trivial] Use proper test cases on unittest
(#2775)
This commit is contained in:
parent
5fe6d48fcd
commit
33e3bb1e4e
@ -940,8 +940,8 @@ def err(msg: str, **kwargs: Any) -> None:
|
||||
self.assertFormatEqual("j = [1, 2, 3]", "j = [1, 2, 3,]")
|
||||
|
||||
out_str = "".join(out_lines)
|
||||
self.assertTrue("Expected tree:" in out_str)
|
||||
self.assertTrue("Actual tree:" in out_str)
|
||||
self.assertIn("Expected tree:", out_str)
|
||||
self.assertIn("Actual tree:", out_str)
|
||||
self.assertEqual("".join(err_lines), "")
|
||||
|
||||
@event_loop()
|
||||
|
@ -181,7 +181,7 @@ def test_gen_check_output(self) -> None:
|
||||
stdout, stderr = loop.run_until_complete(
|
||||
lib._gen_check_output([lib.BLACK_BINARY, "--help"])
|
||||
)
|
||||
self.assertTrue("The uncompromising code formatter" in stdout.decode("utf8"))
|
||||
self.assertIn("The uncompromising code formatter", stdout.decode("utf8"))
|
||||
self.assertEqual(None, stderr)
|
||||
|
||||
# TODO: Add a test to see failure works on Windows
|
||||
|
Loading…
Reference in New Issue
Block a user