summaryrefslogtreecommitdiffstats
path: root/pkg/commands/oscommands/os_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/commands/oscommands/os_test.go')
-rw-r--r--pkg/commands/oscommands/os_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/oscommands/os_test.go b/pkg/commands/oscommands/os_test.go
index efda5a3a1..9c2d9a2a7 100644
--- a/pkg/commands/oscommands/os_test.go
+++ b/pkg/commands/oscommands/os_test.go
@@ -141,7 +141,7 @@ func TestOSCommandFileType(t *testing.T) {
{
"testDirectory",
func() {
- if err := os.Mkdir("testDirectory", 0644); err != nil {
+ if err := os.Mkdir("testDirectory", 0o644); err != nil {
panic(err)
}
},