Removing printlns from test code

This commit is contained in:
Frederick F. Kautz IV
2014-12-08 20:39:30 -08:00
parent a40d834a42
commit af8eb7a55d
2 changed files with 0 additions and 4 deletions

View File

@@ -17,7 +17,6 @@
package strbyteconv
import (
"log"
"testing"
. "gopkg.in/check.v1"
@@ -46,7 +45,6 @@ func (s *MySuite) Test(c *C) {
c.Assert(value, Equals, "100TB")
bytes, err := StringToBytes("100B")
log.Println(err)
c.Assert(err, IsNil)
c.Assert(bytes, Equals, uint64(100))