damnit goimports

This commit is contained in:
mischief 2015-07-18 20:22:38 -07:00
parent e780521c99
commit 3e103ee7ef
1 changed files with 2 additions and 4 deletions

View File

@ -2,21 +2,19 @@ package main
import (
"testing"
"github.com/coreos/fleet/log"
)
func TestZipStore(t *testing.T) {
file := "fixtures/site.zip"
zs, err := openZipStore(file)
if err != nil {
log.Error(err)
t.Error(err)
return
}
ls, err := zs.ReadDir("site/foo/")
if err != nil {
log.Error(err)
t.Error(err)
return
}