Skip to content

Commit e36a690

Browse files
committed
fix lint
1 parent 47d8be6 commit e36a690

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/git/submodule_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func TestAddTemplateSubmoduleIndexes(t *testing.T) {
3333
var err error
3434
_, _, err = NewCommand(ctx, "init").RunStdString(&RunOpts{Dir: tmpDir})
3535
require.NoError(t, err)
36-
_ = os.Mkdir(filepath.Join(tmpDir, "new-dir"), 0755)
36+
_ = os.Mkdir(filepath.Join(tmpDir, "new-dir"), 0o755)
3737
err = AddTemplateSubmoduleIndexes(ctx, tmpDir, []TemplateSubmoduleCommit{{Path: "new-dir", Commit: "1234567890123456789012345678901234567890"}})
3838
require.NoError(t, err)
3939
_, _, err = NewCommand(ctx, "add", "--all").RunStdString(&RunOpts{Dir: tmpDir})

0 commit comments

Comments
 (0)