Skip to content
Merged
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
2 changes: 1 addition & 1 deletion op-e2e/actions/proofs/block_data_hint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"github.com/stretchr/testify/require"
)

func Test_OPProgramAction_BlockDataHint(gt *testing.T) {
func Test_ProgramAction_BlockDataHint(gt *testing.T) {
testCfg := &helpers.TestCfg[any]{
Hardfork: helpers.LatestFork,
}
Expand Down
2 changes: 1 addition & 1 deletion op-e2e/actions/proofs/isthmus_requests_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/stretchr/testify/require"
)

func TestIsthmusExcludedPredeploys(gt *testing.T) {
func Test_ProgramAction_IsthmusExcludedPredeploys(gt *testing.T) {
// Ensures that if EIP-7251, or EIP-7002 predeploys are deployed manually after the fork,
// Isthmus block processing still works correctly. Also ensures that if requests are sent to these
// contracts, they are not processed and do not show up in the block body or requests hash.
Expand Down
2 changes: 1 addition & 1 deletion op-e2e/actions/proofs/l1_prague_fork_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/stretchr/testify/require"
)

func TestPragueForkAfterGenesis(gt *testing.T) {
func Test_ProgramAction_PragueForkAfterGenesis(gt *testing.T) {
type testCase struct {
name string
useSetCodeTx bool
Expand Down
2 changes: 1 addition & 1 deletion op-e2e/actions/proofs/operator_fee_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/stretchr/testify/require"
)

func Test_Operator_Fee_Constistency(gt *testing.T) {
func Test_ProgramAction_OperatorFeeConstistency(gt *testing.T) {

const testOperatorFeeScalar = uint32(20000)
const testOperatorFeeConstant = uint64(500)
Expand Down
2 changes: 1 addition & 1 deletion op-e2e/actions/proofs/pectra_blob_schedule_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type pectraBlobScheduleTestCfg struct {
expectCancunBBF bool
}

func TestPectraBlobSchedule(gt *testing.T) {
func Test_ProgramAction_PectraBlobSchedule(gt *testing.T) {
matrix := helpers.NewMatrix[any]()
defer matrix.Run(gt)

Expand Down