Merge "Replaced e.message with str(e)"

This commit is contained in:
Jenkins 2017-01-10 10:16:41 +00:00 committed by Gerrit Code Review
commit 94b141e61b

@ -332,7 +332,7 @@ class TestTopology(BaseTopologyTest):
except ClientException as e:
self.assertEqual(403, e.code)
self.assertEqual(
e.message,
str(e),
"Graph-type 'graph' requires a 'root' with 'depth'")
raise
finally: