From a2fc58a34715539d4550cb7b1ad45cb0c954ea4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Mon, 29 Jan 2024 22:48:30 +0100 Subject: [PATCH] chore: add print for the assertion --- wait/http_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/wait/http_test.go b/wait/http_test.go index b967b81abf..7da075222b 100644 --- a/wait/http_test.go +++ b/wait/http_test.go @@ -115,6 +115,15 @@ func ExampleHTTPStrategy_WithForcedIPv4LocalHost() { } }() + state, err := c.State(ctx) + if err != nil { + panic(err) + } + + fmt.Println(state.Running) + + // Output: + // true } func ExampleHTTPStrategy_WithBasicAuth() {