diff --git a/cmd/bisync/bisync_test.go b/cmd/bisync/bisync_test.go index c5f1ece97..7f49b2921 100644 --- a/cmd/bisync/bisync_test.go +++ b/cmd/bisync/bisync_test.go @@ -1029,6 +1029,9 @@ func (b *bisyncTest) checkPreReqs(ctx context.Context, opt *bisync.Options) (con if err == fs.ErrorCantSetModTime { b.t.Skip("skipping test as at least one remote does not support setting modtime") } + if err == fs.ErrorCantSetModTimeWithoutDelete { // transfers stats expected to differ on this backend + logReplacements = append(logReplacements, `^.*There was nothing to transfer.*$`, dropMe) + } if !f.Features().IsLocal { time.Sleep(time.Second) // avoid GoogleCloudStorage Error 429 rateLimitExceeded }