1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-17 12:06:50 +02:00
This commit is contained in:
Carlos Alexandro Becker 2017-05-01 10:08:22 -03:00
parent 7e6a0a2afa
commit 1b9fbdcdbb
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

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