From 639cfcc313e71d180f39b27bf5ab0029643b18e0 Mon Sep 17 00:00:00 2001 From: "cl-branch-out[bot]" <227660121+cl-branch-out[bot]@users.noreply.github.com> Date: Thu, 25 Dec 2025 22:44:49 +0000 Subject: [PATCH] [DX-1954] quarantined github.com/smartcontractkit/chainlink/system-tests/tests/regression/cre.Test_CRE_V2_EVM_GetTransactionReceipt_Invalid_Hash_Regression --- system-tests/tests/go.mod | 1 + system-tests/tests/regression/cre/cre_regression_suite_test.go | 3 +++ 2 files changed, 4 insertions(+) diff --git a/system-tests/tests/go.mod b/system-tests/tests/go.mod index 4a33b239aab..fb6f5e0464d 100644 --- a/system-tests/tests/go.mod +++ b/system-tests/tests/go.mod @@ -72,6 +72,7 @@ require ( github.com/smartcontractkit/chainlink/system-tests/tests/smoke/cre/evm/logtrigger v0.0.0-00010101000000-000000000000 github.com/smartcontractkit/chainlink/system-tests/tests/smoke/cre/evmread v0.0.0-20250917232237-c4ecf802c6f8 github.com/smartcontractkit/libocr v0.0.0-20251212213002-0a5e2f907dda + github.com/smartcontractkit/quarantine v0.0.0-20250909213106-ece491bef618 github.com/stretchr/testify v1.11.1 golang.org/x/sync v0.19.0 google.golang.org/protobuf v1.36.10 diff --git a/system-tests/tests/regression/cre/cre_regression_suite_test.go b/system-tests/tests/regression/cre/cre_regression_suite_test.go index 82587cb205b..41e238c46a5 100644 --- a/system-tests/tests/regression/cre/cre_regression_suite_test.go +++ b/system-tests/tests/regression/cre/cre_regression_suite_test.go @@ -5,6 +5,8 @@ import ( "strings" "testing" + "github.com/smartcontractkit/quarantine" + t_helpers "github.com/smartcontractkit/chainlink/system-tests/tests/test-helpers" "github.com/smartcontractkit/chainlink-testing-framework/framework" @@ -113,6 +115,7 @@ func Test_CRE_V2_EVM_GetTransactionByHash_Invalid_Hash_Regression(t *testing.T) } func Test_CRE_V2_EVM_GetTransactionReceipt_Invalid_Hash_Regression(t *testing.T) { + quarantine.Flaky(t, "DX-1954") runEVMNegativeTestSuite(t, evmNegativeTestsGetTransactionReceiptInvalidHash) }