Remove logging from tests

This commit is contained in:
Sammy Libre 2017-10-10 04:12:54 +05:00
parent f092d7e868
commit 52fc8d3952

View File

@ -2,7 +2,6 @@ package cnutil
import (
"encoding/hex"
"log"
"testing"
)
@ -22,8 +21,6 @@ func TestConvertBlob(t *testing.T) {
}
}
if !ok {
log.Printf("Got: %v %v", output, len(output))
log.Printf("Expected: %v %v", expectedResult, len(expectedResult))
t.Error("Invalid result")
}
}