vfs: fix tests not to upload a 0 length file

Some remotes can't upload 0 length files, so this fixes the
TestCacheRename test so that it writes something to the file.
s3-about
Nick Craig-Wood 2019-11-15 09:26:40 +00:00
parent 479c803fd9
commit b5bb4c2a21
1 changed files with 2 additions and 0 deletions

View File

@ -620,6 +620,8 @@ func TestCacheRename(t *testing.T) {
h, err := vfs.OpenFile("rename_me", os.O_WRONLY|os.O_CREATE, 0777)
require.NoError(t, err)
_, err = h.WriteString("hello")
require.NoError(t, err)
fh, ok := h.(*RWFileHandle)
require.True(t, ok)