1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-13 13:48:40 +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",
}
for key, target := range map[string]buildTarget{
"test_darwin_amd64": {"darwin", "amd64", ""},
"test_linux_arm64": {"linux", "arm64", ""},
"test_linux_armv7": {"linux", "arm", "7"},
"test_1.2.3_darwin_amd64": {"darwin", "amd64", ""},
"test_1.2.3_linux_arm64": {"linux", "arm64", ""},
"test_1.2.3_linux_armv7": {"linux", "arm", "7"},
} {
t.Run(key, func(t *testing.T) {
name, err := nameFor(ctx, target)