mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-12-18 11:00:25 +00:00
e2e: correct int format
use %d when formatting the int value. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
parent
0f0957164e
commit
c5a6d11a8f
@ -114,7 +114,7 @@ func validateSubvolumeCount(f *framework.Framework, count int, fileSystemName, s
|
|||||||
e2elog.Failf("failed to list CephFS subvolumes: %v", err)
|
e2elog.Failf("failed to list CephFS subvolumes: %v", err)
|
||||||
}
|
}
|
||||||
if len(subVol) != count {
|
if len(subVol) != count {
|
||||||
e2elog.Failf("subvolumes [%v]. subvolume count %d not matching expected count %v", subVol, len(subVol), count)
|
e2elog.Failf("subvolumes [%v]. subvolume count %d not matching expected count %d", subVol, len(subVol), count)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user