operations: fix --max-transfer test with jottacloud

Jottacloud was deduplicating the uploads, so make a different upload
each time
master
Nick Craig-Wood 2020-03-16 14:05:49 +00:00
parent f94257115f
commit 4c82b1f3c6
1 changed files with 2 additions and 1 deletions

View File

@ -44,6 +44,7 @@ import (
"github.com/rclone/rclone/fs/hash"
"github.com/rclone/rclone/fs/operations"
"github.com/rclone/rclone/fstest"
"github.com/rclone/rclone/lib/random"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
@ -1545,7 +1546,7 @@ func TestCopyFileMaxTransfer(t *testing.T) {
const sizeCutoff = 2048
file1 := r.WriteFile("file1", "file1 contents", t1)
file2 := r.WriteFile("file2", "file2 contents"+string(make([]byte, sizeCutoff)), t2)
file2 := r.WriteFile("file2", "file2 contents"+random.String(sizeCutoff), t2)
rfile1 := file1
rfile1.Path = "sub/file1"