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 | e899f18d47c504e095bf4f48da85cd64194278e1 (patch) | |
| tree | fda8b0217aa4c68674b4010519531480911715da /cpp/src/tests/acl.py | |
| parent | 8fbfe18490706f1ef22e0001a5f5007aba297ea2 (diff) | |
| download | qpid-python-e899f18d47c504e095bf4f48da85cd64194278e1.tar.gz | |
NO-JIRA Initialize variable before its use.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1373429 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/acl.py')
| -rwxr-xr-x | cpp/src/tests/acl.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/tests/acl.py b/cpp/src/tests/acl.py index 0e096a6f5b..23886d59c5 100755 --- a/cpp/src/tests/acl.py +++ b/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: |
