diff options
author | Charles E. Rolke <chug@apache.org> | 2012-08-15 14:14:57 +0000 |
---|---|---|
committer | Charles E. Rolke <chug@apache.org> | 2012-08-15 14:14:57 +0000 |
commit | 0bc9ed7b415b75b5844f65fe3a51122bb5d18412 (patch) | |
tree | d69b91a179e010254acc9cc193debdd365f69aaf | |
parent | f15b1410976cdfe041a8d08ce7796866e3e3161b (diff) | |
download | qpid-python-0bc9ed7b415b75b5844f65fe3a51122bb5d18412.tar.gz |
NO-JIRA Initialize variable before its use.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1373429 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-x | qpid/cpp/src/tests/acl.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/src/tests/acl.py b/qpid/cpp/src/tests/acl.py index 0e096a6f5b..23886d59c5 100755 --- a/qpid/cpp/src/tests/acl.py +++ b/qpid/cpp/src/tests/acl.py @@ -119,6 +119,7 @@ class ACLTests(TestBase010): def LookupPublish(self, userName, exchName, keyName, expectedResult): result = self.acl_lookupPublish(userName, exchName, keyName) if (result['result'] != expectedResult): + suffix = ', [ERROR: Expected= ' + expectedResult if (result['result'] is None): suffix = suffix + ', Exception= ' + result['text'] + ']' else: |