diff options
author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2010-09-22 12:51:10 +0000 |
---|---|---|
committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2010-09-22 12:51:10 +0000 |
commit | eb2f320af6e874d763fb2f2b3e81801424416cc1 (patch) | |
tree | 3630e84f77a50ddb83cbfbc0480d25280e7f5014 /cpp/bindings/qmf/tests/python_console.py | |
parent | 1bdcd0996456626cb1180fb9227826f2d953cee1 (diff) | |
download | qpid-python-eb2f320af6e874d763fb2f2b3e81801424416cc1.tar.gz |
QPID-2880: allow boolean values in method call map/list arguments.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@999919 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/bindings/qmf/tests/python_console.py')
-rwxr-xr-x | cpp/bindings/qmf/tests/python_console.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/bindings/qmf/tests/python_console.py b/cpp/bindings/qmf/tests/python_console.py index 6ed3c04d50..1cef824fb5 100755 --- a/cpp/bindings/qmf/tests/python_console.py +++ b/cpp/bindings/qmf/tests/python_console.py @@ -281,9 +281,9 @@ class QmfInteropTests(TestBase010): 'aSigned' : -666, 'aString' : "A String", 'aFloat' : 3.1415, - 'aList' : ['x', -1, 'y', 2]} - - inList = ['aString', long(1), -1, 2.7182, {'aMap': -8}] + 'aList' : ['x', -1, 'y', 2], + 'abool' : False} + inList = ['aString', long(1), -1, 2.7182, {'aMap': -8}, True] result = parent.test_map_list(inMap, inList) self.assertEqual(result.status, 0) |