Fix unit test failure 97/67197/2
authorRitu Sood <ritu.sood@intel.com>
Thu, 7 Mar 2019 18:31:57 +0000 (10:31 -0800)
committerRitu Sood <ritu.sood@intel.com>
Thu, 7 Mar 2019 18:43:58 +0000 (10:43 -0800)
Updating unit test for matching the changes
in another patches

Change-Id: I1a6d7ecf00261a4a7b7514b45456f6ac17993d2e
Signed-off-by: Ritu Sood <ritu.sood@intel.com>
internal/pkg/ovn/ovn_test.go

index 312a26a..f974c30 100644 (file)
@@ -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