diff --git a/tests/vm_startup_test.go b/tests/vm_startup_test.go index 5b5d042..3434e15 100644 --- a/tests/vm_startup_test.go +++ b/tests/vm_startup_test.go @@ -92,6 +92,7 @@ var _ = Describe("Virtual Machines Startup", func() { return nslookupErr }, time.Minute, pollingInterval).ShouldNot(HaveOccurred(), fmt.Sprintf("nslookup failed. Output - %s", nslookupOutput)) + By(fmt.Sprintf("DBG %s DBG", nslookupOutput)) By("Comparing the VirtualMachineInstance IP to the nslookup result") Expect(nslookupOutput).To(ContainSubstring(fmt.Sprintf("Address: %s\n", vmiIp)), fmt.Sprintf("nsloookup doesn't return the VMI IP address - %s. nslookup output - %s", vmiIp, nslookupOutput)) })