From 478624ef607b62fdde3bd48bbe97fe09f3735473 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Fri, 19 May 2017 23:43:51 -0300 Subject: [PATCH] fix test --- pipeline/build/name_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pipeline/build/name_test.go b/pipeline/build/name_test.go index 91e3333d7..cc3dee858 100644 --- a/pipeline/build/name_test.go +++ b/pipeline/build/name_test.go @@ -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)