From 212a9c6a60cb50bda56b03bbf89f0f53ccc44552 Mon Sep 17 00:00:00 2001 From: Lukasz Szaszkiewicz Date: Mon, 29 Sep 2025 13:36:38 +0200 Subject: [PATCH] test/e2e/apimachinery/watchlist: select only wellknown secrets for table test --- test/e2e/apimachinery/watchlist.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/apimachinery/watchlist.go b/test/e2e/apimachinery/watchlist.go index 0e1847e8d27..e3715a15665 100644 --- a/test/e2e/apimachinery/watchlist.go +++ b/test/e2e/apimachinery/watchlist.go @@ -227,7 +227,7 @@ var _ = SIGDescribe("API Streaming (aka. WatchList)", framework.WithFeatureGate( framework.ExpectNoError(err) dynamicClient := dynamic.New(restClient) - opts, hasPreparedOptions, err := watchlist.PrepareWatchListOptionsFromListOptions(metav1.ListOptions{}) + opts, hasPreparedOptions, err := watchlist.PrepareWatchListOptionsFromListOptions(metav1.ListOptions{LabelSelector: "watchlist=true"}) framework.ExpectNoError(err) gomega.Expect(hasPreparedOptions).To(gomega.BeTrueBecause("it should be possible to prepare watchlist opts from an empty ListOptions"))