Commit bf28a04e authored by clabby's avatar clabby Committed by GitHub

chore(op-e2e): Run `BadTxInBatch` tests on Granite only (#12629)

parent 87722247
......@@ -144,14 +144,14 @@ func Test_ProgramAction_BadTxInBatch(gt *testing.T) {
matrix.AddTestCase(
"HonestClaim",
nil,
helpers.LatestForkOnly,
helpers.NewForkMatrix(helpers.Granite),
runBadTxInBatchTest,
helpers.ExpectNoError(),
)
matrix.AddTestCase(
"JunkClaim",
nil,
helpers.LatestForkOnly,
helpers.NewForkMatrix(helpers.Granite),
runBadTxInBatchTest,
helpers.ExpectError(claim.ErrClaimNotValid),
helpers.WithL2Claim(common.HexToHash("0xdeadbeef")),
......@@ -159,14 +159,14 @@ func Test_ProgramAction_BadTxInBatch(gt *testing.T) {
matrix.AddTestCase(
"ResubmitBadFirstFrame-HonestClaim",
nil,
helpers.LatestForkOnly,
helpers.NewForkMatrix(helpers.Granite),
runBadTxInBatch_ResubmitBadFirstFrame_Test,
helpers.ExpectNoError(),
)
matrix.AddTestCase(
"ResubmitBadFirstFrame-JunkClaim",
nil,
helpers.LatestForkOnly,
helpers.NewForkMatrix(helpers.Granite),
runBadTxInBatch_ResubmitBadFirstFrame_Test,
helpers.ExpectError(claim.ErrClaimNotValid),
helpers.WithL2Claim(common.HexToHash("0xdeadbeef")),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment