(t *testing.T, f fs.Fs, remote, content string)
| 984 | } |
| 985 | |
| 986 | func (r *run) writeRemoteString(t *testing.T, f fs.Fs, remote, content string) { |
| 987 | r.writeRemoteBytes(t, f, remote, []byte(content)) |
| 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)) |
no test coverage detected