Dan Kenigsberg has uploaded a new change for review. Change subject: net test: unbreak qosTests ......................................................................
net test: unbreak qosTests commit a42f9854 moved a function without touching its test. Change-Id: I0b56541720943480b6111645942caf2eb88ff631 Signed-off-by: Dan Kenigsberg <[email protected]> --- M tests/qosTests.py 1 file changed, 2 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/09/36909/1 diff --git a/tests/qosTests.py b/tests/qosTests.py index 5a0bac4..58f9cea 100644 --- a/tests/qosTests.py +++ b/tests/qosTests.py @@ -19,6 +19,7 @@ from testlib import VdsmTestCase as TestCaseBase from network.configurators import qos +from network.tc import cls class TestConversions(TestCaseBase): @@ -36,7 +37,7 @@ ({'ls': {'m1': 100, 'd': 10, 'm2': 300}}, {'ls': ['m1', '100bit', 'd', '10us', 'm2', '300bit']})) for inp, correct in data: - self.assertEqual(qos._qos_to_str_dict(inp), correct) + self.assertEqual(cls._qos_to_str_dict(inp), correct) def test_get_root_qdisc(self): root = {'kind': 'hfsc', 'root': True, 'handle': '1:', 'refcnt': 2, -- To view, visit http://gerrit.ovirt.org/36909 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I0b56541720943480b6111645942caf2eb88ff631 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
