damnit goimports
This commit is contained in:
parent
e780521c99
commit
3e103ee7ef
1 changed files with 2 additions and 4 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue