From: Ritu Sood Date: Thu, 7 Mar 2019 18:31:57 +0000 (-0800) Subject: Fix unit test failure X-Git-Tag: v0.1.0~21 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F97%2F67197%2F2;p=ovn4nfv-k8s-plugin.git Fix unit test failure Updating unit test for matching the changes in another patches Change-Id: I1a6d7ecf00261a4a7b7514b45456f6ac17993d2e Signed-off-by: Ritu Sood --- diff --git a/internal/pkg/ovn/ovn_test.go b/internal/pkg/ovn/ovn_test.go index 312a26a..f974c30 100644 --- a/internal/pkg/ovn/ovn_test.go +++ b/internal/pkg/ovn/ovn_test.go @@ -124,7 +124,7 @@ var _ = Describe("Add logical Port", func() { }) fakeCmds = ovntest.AddFakeCmdsNoOutputNoError(fakeCmds, []string{ - "ovn-nbctl --timeout=15 --may-exist lsp-add " + netName + " " + portName + " -- lsp-set-addresses " + portName + " " + macIPAddress + " -- --if-exists clear logical_switch_port " + portName + " dynamic_addresses", + "ovn-nbctl --timeout=15 --may-exist lsp-add " + netName + " " + portName + " -- lsp-set-addresses " + portName + " " + macIPAddress + " -- --if-exists clear logical_switch_port " + portName + " dynamic_addresses" + " -- set logical_switch_port " + portName + " external-ids:namespace= external-ids:logical_switch=" + netName + " external-ids:pod=true", }) fakeCmds = ovntest.AddFakeCmd(fakeCmds, &ovntest.ExpectedCmd{ @@ -141,9 +141,6 @@ var _ = Describe("Add logical Port", func() { err := util.SetExec(fexec) Expect(err).NotTo(HaveOccurred()) - _, err = config.InitConfig(ctx, fexec, nil) - Expect(err).NotTo(HaveOccurred()) - fakeClient := &fake.Clientset{} var fakeWatchFactory factory.WatchFactory