Skip to content

Commit 1bbc103

Browse files
committedFeb 15, 2019
fix test
1 parent a16f689 commit 1bbc103

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎zip_test.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@ package main
22

33
import (
44
"bytes"
5-
"github.com/stretchr/testify/assert"
65
"testing"
6+
7+
"github.com/stretchr/testify/assert"
78
)
89

910
func TestExtractFromZip(t *testing.T) {
1011
buf := bytes.NewBuffer(nil)
1112
err := ExtractFromZip("testdata/test.zip", "**/foo.txt", buf)
12-
assert.NotNil(t, err)
13+
assert.Nil(t, err)
1314
t.Log("Content: " + buf.String())
1415
}
1516

1617
//func TestUnzipTo(t *testing.T){
1718
// err := unzipFile("testdata.zip", "./tmp")
1819
// assert.Nil(t, err)
19-
//}
20+
//}

0 commit comments

Comments
 (0)
Please sign in to comment.