Browse Source

pkg/containerfs: format code with gofumpt

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 1 year ago
parent
commit
6c6e1fb13d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/containerfs/rm_test.go

+ 1 - 1
pkg/containerfs/rm_test.go

@@ -27,7 +27,7 @@ func TestEnsureRemoveAllWithMount(t *testing.T) {
 	defer os.RemoveAll(dir2)
 
 	bindDir := filepath.Join(dir1, "bind")
-	if err := os.MkdirAll(bindDir, 0755); err != nil {
+	if err := os.MkdirAll(bindDir, 0o755); err != nil {
 		t.Fatal(err)
 	}