Skip to content

Commit

Permalink
Back out swallowing/loggin teardown failures due to #1657.
Browse files Browse the repository at this point in the history
Addresses:
#1656 (comment)
  • Loading branch information
tseaver committed Mar 30, 2016
1 parent f5bf7c4 commit 1248b66
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions system_tests/logging_.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,7 @@ def setUp(self):
def tearDown(self):
from gcloud.exceptions import NotFound
for doomed in self.to_delete:
try:
doomed.delete()
except NotFound as error:
print('Unable to delete resource: %s' % error)
doomed.delete()

def test_log_text(self):
TEXT_PAYLOAD = 'System test: test_log_text'
Expand Down

0 comments on commit 1248b66

Please sign in to comment.