Skip to content

Commit

Permalink
fix log file names
Browse files Browse the repository at this point in the history
  • Loading branch information
dB2510 committed Aug 3, 2023
1 parent 8892b67 commit e0ba231
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testutil/compose/fuzz/fuzz_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func TestFuzzers(t *testing.T) {
timeout time.Duration
}{
{
name: "beacon fuzz tests",
name: "beacon_fuzz_tests",
configFunc: func(config compose.Config) compose.Config {
config.BeaconFuzz = true

Expand All @@ -49,7 +49,7 @@ func TestFuzzers(t *testing.T) {
timeout: time.Minute * 20,
},
{
name: "p2p fuzz tests",
name: "p2p_fuzz_tests",
configFunc: func(config compose.Config) compose.Config {
config.P2PFuzz = true

Expand All @@ -76,7 +76,7 @@ func TestFuzzers(t *testing.T) {
}

if *logDir != "" {
autoConfig.LogFile = path.Join(*logDir, fmt.Sprintf("%s.log", t.Name()))
autoConfig.LogFile = path.Join(*logDir, fmt.Sprintf("%s.log", test.name))
}

err = compose.Auto(context.Background(), autoConfig)
Expand Down

0 comments on commit e0ba231

Please sign in to comment.