Skip to content

Commit dc17fc4

Browse files
author
Jonathan Basseri
committed
fix log format string
1 parent 3430201 commit dc17fc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/storage/testsuites/snapshottable.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,10 @@ func WaitForSnapshotReady(c dynamic.Interface, ns string, snapshotName string, P
227227
}
228228
value := status.(map[string]interface{})
229229
if value["readyToUse"] == true {
230-
framework.Logf("VolumeSnapshot %s found and is ready", snapshotName, time.Since(start))
230+
framework.Logf("VolumeSnapshot %s found and is ready after %v", snapshotName, time.Since(start))
231231
return nil
232232
} else if value["ready"] == true {
233-
framework.Logf("VolumeSnapshot %s found and is ready", snapshotName, time.Since(start))
233+
framework.Logf("VolumeSnapshot %s found and is ready after %v", snapshotName, time.Since(start))
234234
return nil
235235
} else {
236236
framework.Logf("VolumeSnapshot %s found but is not ready.", snapshotName)

0 commit comments

Comments
 (0)