Merge pull request #96 from fkautz/pr_out_removing_printlns_from_test_code

This commit is contained in:
Frederick F. Kautz IV 2014-12-08 20:40:08 -08:00
commit 76f21c1cfc
2 changed files with 0 additions and 4 deletions

View File

@ -19,7 +19,6 @@ package split
import (
"bufio"
"bytes"
"log"
"strconv"
"testing"
@ -39,7 +38,6 @@ func (s *MySuite) TestSplitStream(c *C) {
bytesWriter.Write([]byte(strconv.Itoa(i)))
}
bytesWriter.Flush()
log.Println(strconv.Itoa(bytesBuffer.Len()))
ch := make(chan SplitMessage)
reader := bytes.NewReader(bytesBuffer.Bytes())
go SplitStream(reader, 25, ch)

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))