Yeela Kaplan has posted comments on this change.
Change subject: virtTests: add way to query full stats via jsonrpc ......................................................................
Patch Set 1:
(1 comment)
https://gerrit.ovirt.org/#/c/45309/1/tests/functional/utils.py File tests/functional/utils.py:
Line 220: else: Line 221: return _parse_result(result) Line 222: Line 223: def getVmList(self, vmId): Line 224: result = self.vdscli.getVMFullList() I think you should keep the test as is by giving parameter: self.vdscli.getVMFullList([vmId]) Line 225: code, msg, vm_list = _parse_result(result, True) Line 226: return code, msg, vm_list[0] Line 227: Line 228: def getVdsCapabilities(self):