summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-01-24 00:01:39 +0000
committerGerrit Code Review <review@openstack.org>2012-01-24 00:01:39 +0000
commit88b88a9e6f515fe617da724993a327b5bbc12aaa (patch)
treefd881fb78cfcb9505a93264469d4c3b995860a17
parent5f69fbba77d73eff185d5b7670a539af548e8740 (diff)
parent92462c8f59410984b142a99b49e9e3bf6050aebd (diff)
Merge "Suppressed backtraces in tests causes sweaty eyes"
-rw-r--r--keystone/test/client/test_keystone_manage.py6
1 files changed, 1 insertions, 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()