use testing Logf in package tests

This commit is contained in:
Aaron Meihm 2017-07-19 14:43:29 -05:00
Родитель 90fe0e9a6e
Коммит a9a5c54c62
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -8,7 +8,6 @@
package scribe_test
import (
"fmt"
"github.com/mozilla/scribe"
"testing"
)
@ -18,7 +17,7 @@ func TestPackageQuery(t *testing.T) {
scribe.TestHooks(true)
pinfo := scribe.QueryPackages()
for _, x := range pinfo {
fmt.Println(x.Name, x.Version, x.Type)
t.Logf("%v %v %v", x.Name, x.Version, x.Type)
}
if len(pinfo) != 7 {
t.FailNow()