Merge "replace 'data=' with 'message='"

This commit is contained in:
Zuul 2018-08-08 02:27:24 +00:00 committed by Gerrit Code Review
commit 92021a8830
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ class TestRetryDecorator(test.TestCase):
def fails_once():
self.counter += 1
if self.counter < 2:
raise exception.ManilaException(data='fake')
raise exception.ManilaException(message='fake')
else:
return 'success'