From b7e1b90bb8b9fcd640089f85da2cf1aef49192c5 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Thu, 2 Mar 2023 10:30:47 +0100 Subject: [PATCH] e2e: replace CephFS in messages for RBD tests Signed-off-by: Niels de Vos --- e2e/rbd.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/rbd.go b/e2e/rbd.go index 6c1800778..7f5a28d89 100644 --- a/e2e/rbd.go +++ b/e2e/rbd.go @@ -419,7 +419,7 @@ var _ = Describe("RBD", func() { By("verify PVC and app binding on helm installation", func() { err := validatePVCAndAppBinding(pvcPath, appPath, f) if err != nil { - framework.Failf("failed to validate CephFS pvc and application binding: %v", err) + framework.Failf("failed to validate RBD pvc and application binding: %v", err) } // validate created backend rbd images validateRBDImageCount(f, 0, defaultRBDPool) @@ -1207,7 +1207,7 @@ var _ = Describe("RBD", func() { } err = validatePVCAndAppBinding(pvcPath, appPath, f) if err != nil { - framework.Failf("failed to validate CephFS pvc and application binding: %v", err) + framework.Failf("failed to validate RBD pvc and application binding: %v", err) } // validate created backend rbd images validateRBDImageCount(f, 0, defaultRBDPool) @@ -1372,7 +1372,7 @@ var _ = Describe("RBD", func() { } err = validatePVCAndAppBinding(pvcPath, appPath, f) if err != nil { - framework.Failf("failed to validate CephFS pvc and application binding: %v", err) + framework.Failf("failed to validate RBD pvc and application binding: %v", err) } // validate created backend rbd images validateRBDImageCount(f, 0, defaultRBDPool)