diff --git a/devenv/tests/ocr2/chaos_test.go b/devenv/tests/ocr2/chaos_test.go index bdf99335d56..565bfb7476a 100644 --- a/devenv/tests/ocr2/chaos_test.go +++ b/devenv/tests/ocr2/chaos_test.go @@ -5,6 +5,7 @@ import ( "time" "github.com/ethereum/go-ethereum/common" + "go.uber.org/zap/zapcore" "github.com/smartcontractkit/libocr/gethwrappers2/ocr2aggregator" "github.com/stretchr/testify/require" @@ -25,7 +26,12 @@ func TestOCR2Chaos(t *testing.T) { require.NoError(t, err) t.Cleanup(func() { - cleanupErr := products.CleanupContainerLogs(products.DefaultSettings()) + cleanupErr := products.CleanupContainerLogs(products.DefaultSettings(products.NewAllowedLogMessage( + "SLOW SQL QUERY", + "It is expected, because we are messing with the containers during the test", + zapcore.DPanicLevel, + products.WarnAboutAllowedMsgs_No, + ))) require.NoError(t, cleanupErr, "failed to process cleanup container logs") }) c, _, _, err := products.ETHClient(t.Context(), in.Blockchains[0].Out.Nodes[0].ExternalWSUrl, pdConfig.Config[0].GasSettings.FeeCapMultiplier, pdConfig.Config[0].GasSettings.TipCapMultiplier)