remove unnecessary try/except block

This commit is contained in:
Ch3LL 2017-12-04 16:18:01 -05:00
parent c329ced7ee
commit 951d09ca2f
No known key found for this signature in database
GPG key ID: 132B55A7C13EFA73

View file

@ -149,10 +149,7 @@ class EC2Test(ShellCase):
ret_str = ' shutting-down'
# check if deletion was performed appropriately
try:
self.assertIn(ret_str, delete)
except AssertionError:
raise
self.assertIn(ret_str, delete)
def tearDown(self):
'''