From 194296d35524f52889ebb34dab437eb583dc5a5a Mon Sep 17 00:00:00 2001 From: Michael Burt Date: Mon, 14 Apr 2025 13:57:43 -0600 Subject: [PATCH] Fix test assertion for paginated results --- internal/remote/query_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/remote/query_test.go b/internal/remote/query_test.go index b5896152..8c9e8cce 100644 --- a/internal/remote/query_test.go +++ b/internal/remote/query_test.go @@ -98,6 +98,6 @@ func TestListPagination(t *testing.T) { actual := len(objs) if int(totalItemsInList) != actual { t.Logf("expected items to be %d but found %d. Change this to Fatal when https://github.com/kubernetes/kubernetes/issues/107277 is fixed", totalItemsInList, actual) - // t.Fatalf("expected items to be %d but found %d", totalItemsInList, actual) + t.Fatalf("expected items to be %d but found %d", totalItemsInList, actual) } }