From 527553718cd5725fc663d0c7808b88bf6bd28564 Mon Sep 17 00:00:00 2001 From: Sven Anderson Date: Thu, 4 Mar 2021 14:45:38 +0100 Subject: [PATCH] cephfs: add a missing userMount() to tests Signed-off-by: Sven Anderson --- cephfs/path_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cephfs/path_test.go b/cephfs/path_test.go index c1dfefe..9aae10c 100644 --- a/cephfs/path_test.go +++ b/cephfs/path_test.go @@ -222,6 +222,7 @@ func TestSymlink(t *testing.T) { }) t.Run("symlinkExistsError", func(t *testing.T) { + useMount(t) fname1 := "TestFile1.txt" f1, err := mount.Open(fname1, os.O_RDWR|os.O_CREATE, 0666) assert.NoError(t, err)