Codebase list golang-github-vbauerster-mpb / 79fec09
fix test Vladimir Bauer 9 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
5656 }
5757 }
5858
59 func newTestState(total, current int64) state {
60 return state{
59 func newTestState(total, current int64) *state {
60 return &state{
6161 format: formatRunes{'[', '=', '>', '-', ']'},
6262 total: total,
6363 current: current,