Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
merge.go: fix broken tests
  • Loading branch information
Ivan Kruglov committed Jul 6, 2014
1 parent f4b93a6 commit c66dd8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Go/sereal/merger_test.go
Expand Up @@ -31,7 +31,7 @@ func BenchmarkMerger(b *testing.B) {

for i := 0; i < b.N; i++ {
buf := data[r.Int()%len(data)]
err := m.Append(buf)
_, err := m.Append(buf)
if err != nil {
b.Fatal(err)
}
Expand Down

0 comments on commit c66dd8e

Please sign in to comment.