Skip to content

Commit

Permalink
tests/riot.go include reqNumber to chart name
Browse files Browse the repository at this point in the history
Former-commit-id: b2e1de6
  • Loading branch information
suizman committed Nov 6, 2018
1 parent 12a66e4 commit 1f16427
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/riot.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ func drawChart(m string, a *axis) {
},
}

file, _ := os.Create("results/graph-" + m + ".png")
req := fmt.Sprint(numRequests)
file, _ := os.Create("results/graph-" + m + "-" + req + ".png")
_ = graph.Render(chart.PNG, file)

}
Expand Down

0 comments on commit 1f16427

Please sign in to comment.