mirror of
https://github.com/rclone/rclone
synced 2025-01-08 10:26:23 +01:00
Fix copyto/moveto test error (see #1261)
This commit is contained in:
parent
a61ba1e7c4
commit
b49821956a
@ -801,7 +801,7 @@ func TestMoveFile(t *testing.T) {
|
||||
fstest.CheckItems(t, r.flocal)
|
||||
fstest.CheckItems(t, r.fremote, file2)
|
||||
|
||||
err = fs.MoveFile(r.fremote, r.flocal, file2.Path, file2.Path)
|
||||
err = fs.MoveFile(r.fremote, r.fremote, file2.Path, file2.Path)
|
||||
require.NoError(t, err)
|
||||
fstest.CheckItems(t, r.flocal)
|
||||
fstest.CheckItems(t, r.fremote, file2)
|
||||
@ -827,7 +827,7 @@ func TestCopyFile(t *testing.T) {
|
||||
fstest.CheckItems(t, r.flocal, file1)
|
||||
fstest.CheckItems(t, r.fremote, file2)
|
||||
|
||||
err = fs.CopyFile(r.fremote, r.flocal, file2.Path, file2.Path)
|
||||
err = fs.CopyFile(r.fremote, r.fremote, file2.Path, file2.Path)
|
||||
require.NoError(t, err)
|
||||
fstest.CheckItems(t, r.flocal, file1)
|
||||
fstest.CheckItems(t, r.fremote, file2)
|
||||
|
Loading…
Reference in New Issue
Block a user