Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Fix unit test naming consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuacolvin0 committed Dec 12, 2023
1 parent 5d0338d commit d80817e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system_tests/program_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ func TestProgramActivationLogs(t *testing.T) {

func TestTransient(t *testing.T) {
t.Parallel()
transientTest(t, true)
testTransient(t, true)
}

func reentryCallData(enter *common.Address, reenter *common.Address, counter byte) []byte {
Expand All @@ -1059,7 +1059,7 @@ func reentryCallData(enter *common.Address, reenter *common.Address, counter byt
return append(callData, counter)
}

func transientTest(t *testing.T, jit bool) {
func testTransient(t *testing.T, jit bool) {
ctx, node, l2info, l2client, auth, cleanup := setupProgramTest(t, jit)
defer cleanup()

Expand Down

0 comments on commit d80817e

Please sign in to comment.