Skip to content

Commit

Permalink
remove prints from ops_test
Browse files Browse the repository at this point in the history
  • Loading branch information
lunixbochs committed Jun 11, 2016
1 parent 39a491a commit 3047838
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions go/models/record/ops_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package record

import (
"bytes"
"fmt"
"testing"
)

Expand All @@ -21,11 +20,8 @@ func TestOpFrame(t *testing.T) {
t.Fatal(err)
}

fmt.Println(buf.Bytes())

op, _, err := Unpack(&buf)
_, _, err := Unpack(&buf)
if err != nil {
t.Fatal(err)
}
fmt.Println(op)
}

0 comments on commit 3047838

Please sign in to comment.