1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2026-05-16 09:20:15 +02:00

fixed import

This commit is contained in:
Carlos Alexandro Becker
2016-12-30 16:52:50 -02:00
parent b5cf5d4122
commit 7d7a1d39c8
+2 -2
View File
@@ -2,7 +2,7 @@ package compress
import (
"testing"
"github.com/docker/docker/pkg/testutil/assert"
"github.com/stretchr/testify/assert"
)
func TestExtWindows(t *testing.T) {
@@ -10,5 +10,5 @@ func TestExtWindows(t *testing.T) {
}
func TestExtOthers(t *testing.T) {
assert.Equal(t, ext("linux"), "")
assert.Empty(t, ext("linux"))
}