From cf34a967e9b045ade51413ccdc8e6919c396b79e Mon Sep 17 00:00:00 2001 From: Luis Ayuso Date: Tue, 12 Nov 2024 11:16:18 +0100 Subject: [PATCH] segregate test --- tests/{ => withdrawals_test}/withdrawals_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename tests/{ => withdrawals_test}/withdrawals_test.go (94%) diff --git a/tests/withdrawals_test.go b/tests/withdrawals_test/withdrawals_test.go similarity index 94% rename from tests/withdrawals_test.go rename to tests/withdrawals_test/withdrawals_test.go index 6755f5538..cb4e06f34 100644 --- a/tests/withdrawals_test.go +++ b/tests/withdrawals_test/withdrawals_test.go @@ -1,4 +1,4 @@ -package tests +package withdrawal_tests import ( "bytes" @@ -6,6 +6,7 @@ import ( "math/big" "testing" + "github.com/Fantom-foundation/go-opera/tests" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/rlp" @@ -16,7 +17,7 @@ func TestWithdrawalFieldsInBlocks(t *testing.T) { requireBase := require.New(t) // start network. - net, err := StartIntegrationTestNet(t.TempDir()) + net, err := tests.StartIntegrationTestNet(t.TempDir()) requireBase.NoErrorf(err, "Failed to start the fake network: ", err) defer net.Stop()