diff --git a/test/integration/category_test.go b/test/integration/category_test.go index 592ccb24..253d0d62 100644 --- a/test/integration/category_test.go +++ b/test/integration/category_test.go @@ -65,7 +65,10 @@ func requireCleanKubectlStderr(t *testing.T, stderr string) { if strings.Contains(line, "Throttling request took") { continue } - require.Failf(t, "unexpected kubectl stderr", "kubectl produced unexpected stderr output:\n%s\n\n", stderr) + if strings.Contains(line, "due to client-side throttling, not priority and fairness") { + continue + } + require.Failf(t, "unexpected kubectl stderr", "kubectl produced unexpected stderr:\n%s\n\n", stderr) return } }