LibCST
LibCST copied to clipboard
Remove `with self.assertRaises(Exception):`
with self.assertRaises(Exception):
is used in a couple places for testing an exception is raised.
It can catch any Exception which can result in catching unexpected error.
Change to use a more specific exception or use self.assertRaisesRegex
instead.
@jimmylai will work on this issue.