mirror of
https://github.com/rclone/rclone.git
synced 2025-08-19 09:52:05 +02:00
chunker: fix integration tests after backport commit 6baa4e294
It was my stupid typo: "f.base.NewObject" instead of correct "f.NewObject" I made it during backport. The commit on master was correct.
This commit is contained in:
committed by
Nick Craig-Wood
parent
7ad2c22d5b
commit
d45d48cbe5
@@ -487,7 +487,7 @@ func testPreventCorruption(t *testing.T, f *Fs) {
|
||||
// accessing chunks in strict mode is prohibited
|
||||
f.opt.FailHard = true
|
||||
billyChunk4Name := billyChunkName(4)
|
||||
_, err = f.base.NewObject(ctx, billyChunk4Name)
|
||||
_, err = f.NewObject(ctx, billyChunk4Name)
|
||||
assertOverlapError(err)
|
||||
|
||||
f.opt.FailHard = false
|
||||
|
Reference in New Issue
Block a user