@@ -109,7 +109,7 @@ var _ = utils.SIGDescribe("CSI Mock Node Volume Health", feature.CSIVolumeHealth
109
109
110
110
ginkgo .By ("Waiting for pod to be running" )
111
111
err = e2epod .WaitForPodNameRunningInNamespace (ctx , m .cs , pod .Name , pod .Namespace )
112
- framework .ExpectNoError (err , "Failed to start pod: %v" , err )
112
+ framework .ExpectNoError (err , "wait for running pod" )
113
113
ginkgo .By ("Waiting for all remaining expected CSI calls" )
114
114
err = wait .PollUntilContextTimeout (ctx , time .Second , csiNodeVolumeStatWaitPeriod , true , func (c context.Context ) (done bool , err error ) {
115
115
var index int
@@ -131,7 +131,7 @@ var _ = utils.SIGDescribe("CSI Mock Node Volume Health", feature.CSIVolumeHealth
131
131
// the mocked csidriver register doesn't regist itself to normal csidriver.
132
132
if test .nodeVolumeConditionRequired {
133
133
pod , err := f .ClientSet .CoreV1 ().Pods (pod .Namespace ).Get (ctx , pod .Name , metav1.GetOptions {})
134
- framework .ExpectNoError (err , "Failed to get pods: %v" , err )
134
+ framework .ExpectNoError (err , "get running pod" )
135
135
grabber , err := e2emetrics .NewMetricsGrabber (ctx , f .ClientSet , nil , f .ClientConfig (), true , false , false , false , false , false )
136
136
framework .ExpectNoError (err , "creating the metrics grabber" )
137
137
waitErr := wait .PollUntilContextTimeout (ctx , 30 * time .Second , csiNodeVolumeStatWaitPeriod , true , func (ctx context.Context ) (bool , error ) {
0 commit comments