| 14 | ) |
| 15 | |
| 16 | type errorFilesystem struct { |
| 17 | err error |
| 18 | fsType FilesystemType |
| 19 | uri string |
| 20 | } |
| 21 | |
| 22 | func (fs *errorFilesystem) Chmod(_ string, _ FileMode) error { return fs.err } |
| 23 | func (fs *errorFilesystem) Lchown(_, _, _ string) error { return fs.err } |
nothing calls this directly
no outgoing calls
no test coverage detected