Dan Kenigsberg has uploaded a new change for review. Change subject: unbreak schemaValidationTest ......................................................................
unbreak schemaValidationTest I have merged commit 59f6b37 prematurely, as it depnded on a former patch in the series. Change-Id: Ia63bf083114c14f4898530d81bc56877d215217a Signed-off-by: Dan Kenigsberg <[email protected]> --- M tests/schemaValidationTest.py 1 file changed, 3 insertions(+), 3 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/89/55589/1 diff --git a/tests/schemaValidationTest.py b/tests/schemaValidationTest.py index 1480064..8f40ca6 100644 --- a/tests/schemaValidationTest.py +++ b/tests/schemaValidationTest.py @@ -107,7 +107,7 @@ try: # get args from schema - method_args = bridge._getArgList(spec_class, method_name) + method_args = bridge._get_arg_list(spec_class, method_name) except KeyError: raise AssertionError('Missing method %s.%s' % ( spec_class, method_name)) @@ -130,12 +130,12 @@ method_args, args)) continue # verify args from schema in apiobj args - if not bridge._symNameFilter(marg) in args: + if not bridge._sym_name_filter(marg) in args: raise AssertionError(self._prep_msg( class_name, method_name, method_args, args)) try: # verify ret value with entry in command_info - ret = bridge._getRetList(spec_class, method_name) + ret = bridge._get_ret_list(spec_class, method_name) ret_info = Bridge.command_info.get(cmd, {}).get('ret') if not ret_info and not ret: continue -- To view, visit https://gerrit.ovirt.org/55589 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ia63bf083114c14f4898530d81bc56877d215217a Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Dan Kenigsberg <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
