Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rauljordan committed Oct 12, 2023
1 parent d8e27d1 commit a3ebe4d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions system_tests/bold_challenge_protocol_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"encoding/json"
"io"
"math/big"
"os"
"testing"
"time"

Expand Down Expand Up @@ -58,6 +59,10 @@ var (

func TestBoldProtocol(t *testing.T) {
t.Parallel()
t.Cleanup(func() {
Require(t, os.RemoveAll("/tmp/good"))
Require(t, os.RemoveAll("/tmp/evil"))
})
ctx, cancelCtx := context.WithCancel(context.Background())
defer cancelCtx()
var transferGas = util.NormalizeL2GasForL1GasInitial(800_000, params.GWei) // include room for aggregator L1 costs
Expand Down

0 comments on commit a3ebe4d

Please sign in to comment.