From 3e3ddfd0cbd6b842cbdc7c0dba587586fd63ecbb Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Tue, 15 Oct 2024 15:29:24 +0200 Subject: [PATCH] fix test --- bundle/libraries/filer_volume_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/libraries/filer_volume_test.go b/bundle/libraries/filer_volume_test.go index e45a7cb0f..e4fe66302 100644 --- a/bundle/libraries/filer_volume_test.go +++ b/bundle/libraries/filer_volume_test.go @@ -170,7 +170,7 @@ func TestFilerForVolumeWithInvalidVolumePaths(t *testing.T) { } _, _, diags := GetFilerForLibraries(context.Background(), b) - require.EqualError(t, diags.Error(), fmt.Sprintf("expected UC volume path to be in the format /Volumes////..., got %s", path.Join(p, ".internal"))) + require.EqualError(t, diags.Error(), fmt.Sprintf("expected UC volume path to be in the format /Volumes////..., got %s", p)) } }