1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

fixed import

This commit is contained in:
Carlos Alexandro Becker 2016-12-30 16:52:50 -02:00
parent b5cf5d4122
commit 7d7a1d39c8
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

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"))
}