fix failing test

This commit is contained in:
Chris Ziogas 2024-03-28 14:01:58 +02:00
parent 9e21e2dd2e
commit a6cabe11b0
No known key found for this signature in database
GPG key ID: 2329CF479E36E2DA

View file

@ -23,6 +23,7 @@ import (
"math/big" "math/big"
"os" "os"
"path" "path"
"path/filepath"
"reflect" "reflect"
"testing" "testing"
@ -516,7 +517,7 @@ func testSupplyTracer(t *testing.T, genesis *core.Genesis, gen func(*core.BlockG
engine = beacon.New(ethash.NewFaker()) engine = beacon.New(ethash.NewFaker())
) )
traceOutputPath := t.TempDir() traceOutputPath := filepath.ToSlash(t.TempDir())
traceOutputFilename := path.Join(traceOutputPath, "supply.jsonl") traceOutputFilename := path.Join(traceOutputPath, "supply.jsonl")
// Load supply tracer // Load supply tracer