From 92462c8f59410984b142a99b49e9e3bf6050aebd Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Mon, 23 Jan 2012 17:05:40 -0600 Subject: Suppressed backtraces in tests causes sweaty eyes Change-Id: Ieaceaea5d44860cc096e847977dc076db64765f6 --- keystone/test/client/test_keystone_manage.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/keystone/test/client/test_keystone_manage.py b/keystone/test/client/test_keystone_manage.py index dc5cc677..67102353 100644 --- a/keystone/test/client/test_keystone_manage.py +++ b/keystone/test/client/test_keystone_manage.py @@ -48,11 +48,7 @@ class TestKeystoneManage(unittest.TestCase): # Loop through and try sampledata calls sampledata_calls = sampledata.DEFAULT_FIXTURE for call in sampledata_calls: - try: - manage.process(*call) - except Exception as exc: - self.assertFalse(True, "Call to '%s' failed: %s %s" % - (' '.join(call), sys.stderr, exc)) + manage.process(*call) if __name__ == '__main__': unittest.main() -- cgit