Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions system-tests/tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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)
}

Expand Down
Loading