Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/vfs/local/vfs_test.go')
-rw-r--r--internal/vfs/local/vfs_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/vfs/local/vfs_test.go b/internal/vfs/local/vfs_test.go
index 2072d110..3f84bb39 100644
--- a/internal/vfs/local/vfs_test.go
+++ b/internal/vfs/local/vfs_test.go
@@ -96,7 +96,7 @@ func TestVFSRoot(t *testing.T) {
for name, test := range tests {
t.Run(name, func(t *testing.T) {
- rootVFS, err := localVFS.Root(context.Background(), filepath.Join(tmpDir, test.path))
+ rootVFS, err := localVFS.Root(context.Background(), filepath.Join(tmpDir, test.path), "")
if test.expectedIsNotExist {
require.Equal(t, test.expectedIsNotExist, vfs.IsNotExist(err))