diff --git a/test/suites/integration/networkinterfaces_test.go b/test/suites/integration/networkinterfaces_test.go index f7e3910f4b4d..a39e461dc8c6 100644 --- a/test/suites/integration/networkinterfaces_test.go +++ b/test/suites/integration/networkinterfaces_test.go @@ -118,7 +118,7 @@ var _ = Describe("NetworkInterfaces", func() { Expect(instance.NetworkInterfaces).To(HaveLen(1)) Expect(instance.NetworkInterfaces[0]).ToNot(BeNil()) Expect(instance.NetworkInterfaces[0].Attachment).To(HaveField("DeviceIndex", HaveValue(Equal(int64(0))))) - Expect(*instance.NetworkInterfaces[0].Description).To(Equal(desc1)) + Expect(*instance.NetworkInterfaces[0].Description).To(Equal(desc)) Expect(instance.PublicIpAddress).ToNot(BeNil()) }) It("should create a node with more than one NetworkInterface", func() { @@ -156,7 +156,7 @@ var _ = Describe("NetworkInterfaces", func() { Expect(instance.NetworkInterfaces[1]).ToNot(BeNil()) Expect(instance.NetworkInterfaces[1].Attachment).To(HaveField("DeviceIndex", HaveValue(Equal(int64(1))))) - Expect(*instance.NetworkInterfaces[0].Description).To(Equal(desc1)) + Expect(*instance.NetworkInterfaces[1].Description).To(Equal(desc2)) }) })