Raise specific exceptions on tearDownClass failure
This commit removes the exception handling from the base network api
test case tearDownClass(). Previously every delete operation that was
used in tearDownClass() was inside a try except block that would log
any exception, and the continue with the rest of the cleanup until the
end of the function where it would raise another exception without
any information. This approach just masked errors when they happened
and makes it harder to debug what is failing. Instead the exception
should just be raised directly.
Change-Id: I20b7219bdf2f1e06445e5bde3abe144089fc06e2
1 file changed