You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: