From e6511a91998fdd1d8967932d8639414793c5047b Mon Sep 17 00:00:00 2001 From: Or Shoval Date: Wed, 7 Dec 2022 09:20:59 +0200 Subject: [PATCH] WIP: debug Signed-off-by: Or Shoval --- tests/vm_startup_test.go | 1 + 1 file changed, 1 insertion(+) 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)) })