From d80817ecaf0632436e9348fcde5a5d6e25d6b85b Mon Sep 17 00:00:00 2001 From: Joshua Colvin Date: Tue, 12 Dec 2023 09:26:00 -0700 Subject: [PATCH] Fix unit test naming consistency --- system_tests/program_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system_tests/program_test.go b/system_tests/program_test.go index 7f31a0df7..ab7313a58 100644 --- a/system_tests/program_test.go +++ b/system_tests/program_test.go @@ -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 { @@ -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()