(t *testing.T, f fs.Fs, remote, content string)
| 988 | } |
| 989 | |
| 990 | func (r *run) writeObjectString(t *testing.T, f fs.Fs, remote, content string) fs.Object { |
| 991 | return r.writeObjectBytes(t, f, remote, []byte(content)) |
| 992 | } |
| 993 | |
| 994 | func (r *run) writeRemoteBytes(t *testing.T, f fs.Fs, remote string, data []byte) { |
| 995 | r.writeObjectBytes(t, f, remote, data) |
no test coverage detected