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) { ...@@ -144,14 +144,14 @@ func Test_ProgramAction_BadTxInBatch(gt *testing.T) {
matrix.AddTestCase( matrix.AddTestCase(
"HonestClaim", "HonestClaim",
nil, nil,
helpers.LatestForkOnly, helpers.NewForkMatrix(helpers.Granite),
runBadTxInBatchTest, runBadTxInBatchTest,
helpers.ExpectNoError(), helpers.ExpectNoError(),
) )
matrix.AddTestCase( matrix.AddTestCase(
"JunkClaim", "JunkClaim",
nil, nil,
helpers.LatestForkOnly, helpers.NewForkMatrix(helpers.Granite),
runBadTxInBatchTest, runBadTxInBatchTest,
helpers.ExpectError(claim.ErrClaimNotValid), helpers.ExpectError(claim.ErrClaimNotValid),
helpers.WithL2Claim(common.HexToHash("0xdeadbeef")), helpers.WithL2Claim(common.HexToHash("0xdeadbeef")),
...@@ -159,14 +159,14 @@ func Test_ProgramAction_BadTxInBatch(gt *testing.T) { ...@@ -159,14 +159,14 @@ func Test_ProgramAction_BadTxInBatch(gt *testing.T) {
matrix.AddTestCase( matrix.AddTestCase(
"ResubmitBadFirstFrame-HonestClaim", "ResubmitBadFirstFrame-HonestClaim",
nil, nil,
helpers.LatestForkOnly, helpers.NewForkMatrix(helpers.Granite),
runBadTxInBatch_ResubmitBadFirstFrame_Test, runBadTxInBatch_ResubmitBadFirstFrame_Test,
helpers.ExpectNoError(), helpers.ExpectNoError(),
) )
matrix.AddTestCase( matrix.AddTestCase(
"ResubmitBadFirstFrame-JunkClaim", "ResubmitBadFirstFrame-JunkClaim",
nil, nil,
helpers.LatestForkOnly, helpers.NewForkMatrix(helpers.Granite),
runBadTxInBatch_ResubmitBadFirstFrame_Test, runBadTxInBatch_ResubmitBadFirstFrame_Test,
helpers.ExpectError(claim.ErrClaimNotValid), helpers.ExpectError(claim.ErrClaimNotValid),
helpers.WithL2Claim(common.HexToHash("0xdeadbeef")), 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