Skip to content
This repository was archived by the owner on Feb 11, 2025. It is now read-only.

Commit 5235037

Browse files
committed
206-doublestar-mount Removed unused variables for plugin_test
1 parent f5790a1 commit 5235037

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/plugin/plugin_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,10 +335,10 @@ func exampleNestedFileTreeWithGlob(t *testing.T, name string, content []byte) []
335335
nestedDir1, nestedDirClean1 := test.CreateTempDir(t, name1, dir)
336336
t.Cleanup(nestedDirClean1)
337337

338-
nestedFile1, nestedFileClean1 := test.CreateTempFile(t, name1, content, nestedDir)
338+
_, nestedFileClean1 := test.CreateTempFile(t, name1, content, nestedDir)
339339
t.Cleanup(nestedFileClean1)
340340

341-
nestedFile2, nestedFileClean2 := test.CreateTempFile(t, name1, content, nestedDir1)
341+
_, nestedFileClean2 := test.CreateTempFile(t, name1, content, nestedDir1)
342342
t.Cleanup(nestedFileClean2)
343343

344344
globPath := fmt.Sprintf("%s/**/%s", dir, nestedDir1)

0 commit comments

Comments
 (0)