Merge pull request #130524 from dims/wrong-matcher-use-BeNil-instead-of-BeEmpty

Wrong matcher - use BeNil instead BeEmpty
This commit is contained in:
Kubernetes Prow Robot 2025-03-03 00:59:04 -08:00 committed by GitHub
commit c7d8f731b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -99,7 +99,7 @@ var _ = utils.SIGDescribe("NFSPersistentVolumes", framework.WithDisruptive(), fu
break
}
}
gomega.Expect(clientNode).NotTo(gomega.BeEmpty())
gomega.Expect(clientNode).NotTo(gomega.BeNil())
}
})