diff --git a/integration/helpers/app.go b/integration/helpers/app.go index 319381826b1..405f39f6191 100644 --- a/integration/helpers/app.go +++ b/integration/helpers/app.go @@ -386,5 +386,5 @@ func WaitForLogRateLimitToTakeEffect(appName string, processIndex int, instanceI Eventually(session).Should(Exit(0)) appTable := ParseV3AppProcessTable(session.Out.Contents()) return appTable.Processes[processIndex].Instances[instanceIndex].LogRate - }).Should(MatchRegexp(fmt.Sprintf(`\d+(\.\d+)?[KMG]?/s of %s/s`, expectedLogRateLimit))) + }).Should(MatchRegexp(fmt.Sprintf(`\d+(\.\d+)?[BKMG]?/s of %s/s`, expectedLogRateLimit))) }