mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-10 05:30:26 +00:00
mock tests: remove redundant wrapping of error
The "error waiting for expected CSI calls" is redundant because it's immediately followed by checking that error with: framework.ExpectNoError(err, "while waiting for all CSI calls")
This commit is contained in:
@@ -726,7 +726,7 @@ var _ = utils.SIGDescribe("CSI mock volume", func() {
|
|||||||
err = wait.Poll(time.Second, csiUnstageWaitTimeout, func() (done bool, err error) {
|
err = wait.Poll(time.Second, csiUnstageWaitTimeout, func() (done bool, err error) {
|
||||||
_, index, err := compareCSICalls(trackedCalls, test.expectedCalls, m.cs, f.Namespace.Name, driverPodName, driverContainerName)
|
_, index, err := compareCSICalls(trackedCalls, test.expectedCalls, m.cs, f.Namespace.Name, driverPodName, driverContainerName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return true, fmt.Errorf("error waiting for expected CSI calls: %s", err)
|
return true, err
|
||||||
}
|
}
|
||||||
if index == 0 {
|
if index == 0 {
|
||||||
// No CSI call received yet
|
// No CSI call received yet
|
||||||
|
Reference in New Issue
Block a user