From 4f890bbb545d0d1098b3ffd8506e80ef8a1f5aad Mon Sep 17 00:00:00 2001 From: Brian Kennedy Date: Mon, 27 Feb 2023 10:28:55 -0800 Subject: [PATCH] Update conformance/utils/kubernetes/helpers.go Co-authored-by: Shane Utt --- conformance/utils/kubernetes/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conformance/utils/kubernetes/helpers.go b/conformance/utils/kubernetes/helpers.go index c743afd44d..c1208482eb 100644 --- a/conformance/utils/kubernetes/helpers.go +++ b/conformance/utils/kubernetes/helpers.go @@ -154,7 +154,7 @@ func ConditionsHaveLatestObservedGeneration(obj metav1.Object, conditions []meta fmt.Fprintf(&b, " stale conditions are: ") for i, c := range staleConditions { - fmt.Fprintf(&b, "%s (got %d)", c.Type, c.ObservedGeneration) + fmt.Fprintf(&b, "%s (generation %d)", c.Type, c.ObservedGeneration) if i != len(staleConditions)-1 { fmt.Fprintf(&b, ", ") }