diff options
author | jortel <devnull@localhost> | 2008-11-24 19:12:10 +0000 |
---|---|---|
committer | jortel <devnull@localhost> | 2008-11-24 19:12:10 +0000 |
commit | 3beabd49677ffb70e1584b90b1f4578c211facc7 (patch) | |
tree | 5afd6c0675d40a2e7d66b63c6ae83f4fa6084855 /tests | |
parent | 89f6fa5e0771c1b9f64423a750cb707d6cd593b9 (diff) | |
download | suds-3beabd49677ffb70e1584b90b1f4578c211facc7.tar.gz |
Fix minor bugs
Diffstat (limited to 'tests')
-rw-r--r-- | tests/public.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/public.py b/tests/public.py index 7567d43..4ee40a3 100644 --- a/tests/public.py +++ b/tests/public.py @@ -48,7 +48,8 @@ try: print client # string input = "42" - result = client.service.echoString(input) + d = dict(inputString=input) + result = client.service.echoString(**d) print 'echoString() = %s' % result assert result == input # int |