Skip to content

Commit 8840c13

Browse files
committed
Fix failing log test
1 parent 8100fcd commit 8840c13

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/suite/nginxgateway_test.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,10 +243,7 @@ var _ = Describe("NginxGateway", Ordered, Label("functional", "nginxGateway"), f
243243
return false
244244
}
245245

246-
return strings.Contains(
247-
logs,
248-
"\"current\":\"debug\",\"msg\":\"Log level changed\",\"prev\":\"info\"",
249-
)
246+
return strings.Contains(logs, "\"level\":\"debug\"")
250247
}).WithTimeout(timeoutConfig.GetTimeout).
251248
WithPolling(500 * time.Millisecond).
252249
Should(BeTrue())

0 commit comments

Comments
 (0)