mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2026-09-03 20:52:56 -05:00
XML-RPC signature change
This commit is contained in:
committed by
Rob Crittenden
parent
09d3a6b910
commit
918721c1d0
@@ -79,10 +79,8 @@ def test_params_2_args_options():
|
||||
args = ('Hello', u'world!')
|
||||
options = dict(one=1, two=u'Two', three='Three')
|
||||
assert f(tuple()) == (tuple(), dict())
|
||||
assert f(args) == (args, dict())
|
||||
assert f((options,)) == (tuple(), options)
|
||||
assert f(args + (options,)) == (args, options)
|
||||
assert f((options,) + args) == ((options,) + args, dict())
|
||||
assert f([args]) == (args, dict())
|
||||
assert f([args, options]) == (args, options)
|
||||
|
||||
|
||||
class test_session(object):
|
||||
|
||||
Reference in New Issue
Block a user