Skip to content

Commit

Permalink
[trivial] Use proper test cases on unittest (#2775)
Browse files Browse the repository at this point in the history
  • Loading branch information
isidentical committed Jan 15, 2022
1 parent 5fe6d48 commit 33e3bb1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/test_black.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion tests/test_primer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 33e3bb1

Please sign in to comment.