Skip to content

Commit

Permalink
206-doublestar-mount Removed unused variables for plugin_test
Browse files Browse the repository at this point in the history
  • Loading branch information
bdebyl committed Jul 18, 2022
1 parent f5790a1 commit 5235037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/plugin/plugin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,10 @@ func exampleNestedFileTreeWithGlob(t *testing.T, name string, content []byte) []
nestedDir1, nestedDirClean1 := test.CreateTempDir(t, name1, dir)
t.Cleanup(nestedDirClean1)

nestedFile1, nestedFileClean1 := test.CreateTempFile(t, name1, content, nestedDir)
_, nestedFileClean1 := test.CreateTempFile(t, name1, content, nestedDir)
t.Cleanup(nestedFileClean1)

nestedFile2, nestedFileClean2 := test.CreateTempFile(t, name1, content, nestedDir1)
_, nestedFileClean2 := test.CreateTempFile(t, name1, content, nestedDir1)
t.Cleanup(nestedFileClean2)

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

0 comments on commit 5235037

Please sign in to comment.