From b153254b3a332d25773ef23b6c0094b6e00dbf5d Mon Sep 17 00:00:00 2001 From: nielash Date: Mon, 22 Apr 2024 19:19:50 -0400 Subject: [PATCH] bisync: ignore "Implicitly create directory" messages on tests --- cmd/bisync/bisync_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/bisync/bisync_test.go b/cmd/bisync/bisync_test.go index d34025764..f247c3c55 100644 --- a/cmd/bisync/bisync_test.go +++ b/cmd/bisync/bisync_test.go @@ -97,6 +97,8 @@ var logReplacements = []string{ `^NOTICE:.*?Files of unknown size \(such as Google Docs\) do not sync reliably with --checksum or --size-only\. Consider using modtime instead \(the default\) or --drive-skip-gdocs.*?$`, dropMe, // ignore cache backend cache expired messages `^INFO : .*cache expired.*$`, dropMe, + // ignore "Implicitly create directory" messages (TestnStorage:) + `^INFO : .*Implicitly create directory.*$`, dropMe, // ignore differences in backend features `^.*?"HashType1":.*?$`, dropMe, `^.*?"HashType2":.*?$`, dropMe,