We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a45742b commit 5b7facaCopy full SHA for 5b7faca
staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go
@@ -861,8 +861,8 @@ func TestCacherDontAcceptRequestsStopped(t *testing.T) {
861
},
862
}, listResult)
863
if !utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
864
- if err == nil {
865
- t.Fatalf("Success to create GetList: %v", err)
+ if err != nil {
+ t.Fatalf("Failed to create GetList: %v", err)
866
}
867
} else {
868
if err != nil {
0 commit comments