1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-15 13:53:25 +02:00
This commit is contained in:
Carlos Alexandro Becker 2017-05-19 23:43:51 -03:00
parent cdafdc785a
commit 478624ef60
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -73,9 +73,9 @@ func TestNameDefaltTemplate(t *testing.T) {
Version: "1.2.3", Version: "1.2.3",
} }
for key, target := range map[string]buildTarget{ for key, target := range map[string]buildTarget{
"test_darwin_amd64": {"darwin", "amd64", ""}, "test_1.2.3_darwin_amd64": {"darwin", "amd64", ""},
"test_linux_arm64": {"linux", "arm64", ""}, "test_1.2.3_linux_arm64": {"linux", "arm64", ""},
"test_linux_armv7": {"linux", "arm", "7"}, "test_1.2.3_linux_armv7": {"linux", "arm", "7"},
} { } {
t.Run(key, func(t *testing.T) { t.Run(key, func(t *testing.T) {
name, err := nameFor(ctx, target) name, err := nameFor(ctx, target)