Dima Kuznetsov has uploaded a new change for review. Change subject: tests: Fix API change in sourceroute.py ......................................................................
tests: Fix API change in sourceroute.py Fix signature change introduced in http://gerrit.ovirt.org/#/c/34067 Change-Id: I4ba3b2a140f4bba82e40f8268dd40a6d90acc7bf Signed-off-by: Dima Kuznetsov <[email protected]> --- M tests/sourceroutingTests.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/78/35478/1 diff --git a/tests/sourceroutingTests.py b/tests/sourceroutingTests.py index b3f1072..c4a258e 100644 --- a/tests/sourceroutingTests.py +++ b/tests/sourceroutingTests.py @@ -38,7 +38,7 @@ class TestFilters(TestCaseBase): @MonkeyPatch(sourceroute, 'routeShowTable', _routeShowTableAll) def test_source_route_retrieval(self): - routes = sourceroute.DynamicSourceRoute._getRoutes(TABLE, DEVICE) + routes = sourceroute.DynamicSourceRoute._getRoutes(TABLE) self.assertEqual(len(routes), 2) for route in routes: self.assertEqual(route.table, TABLE) -- To view, visit http://gerrit.ovirt.org/35478 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I4ba3b2a140f4bba82e40f8268dd40a6d90acc7bf Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Dima Kuznetsov <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
