From 929e17d21b4941ef165a9aebb60090f92340e957 Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Mon, 22 Nov 2021 12:26:50 +0530 Subject: [PATCH] e2e: reformat error message with consistent formatting To make the error return consistent across e2e tests we have decided to remove with error presence from the logs and this commit does that for e2e/snapshot.go. Signed-off-by: Humble Chirammal --- e2e/snapshot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/snapshot.go b/e2e/snapshot.go index 000db24a2..390a1a09b 100644 --- a/e2e/snapshot.go +++ b/e2e/snapshot.go @@ -124,7 +124,7 @@ func deleteSnapshot(snap *snapapi.VolumeSnapshot, t int) error { } if !apierrs.IsNotFound(err) { return false, fmt.Errorf( - "get on deleted snapshot %v failed with error other than \"not found\": %w", + "get on deleted snapshot %v failed : other than \"not found\": %w", name, err) }