raygecao
Results
1
issues of
raygecao
### Code: ``` func test(t *testing.T) { path := "." //path, _ = filepath.Abs(path) fs := afero.NewBasePathFs(afero.NewOsFs(), path) assert.NoError(t, afero.WriteFile(fs, "aaa", []byte("ttt"), 0o755)) } ``` ### Result: ``` openfile aaa:...