Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Jan 30, 2022
1 parent 642160e commit 3f593d7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions internal/builders/golang/build_test.go
Expand Up @@ -1011,7 +1011,7 @@ func TestOverrides(t *testing.T) {
Goos: "linux",
Goarch: "amd64",
BuildDetails: config.BuildDetails{
Ldflags: []string{"overriden"},
Ldflags: []string{"overridden"},
},
},
},
Expand All @@ -1020,7 +1020,7 @@ func TestOverrides(t *testing.T) {
Goarch: "amd64",
})
require.Equal(t, dets, config.BuildDetails{
Ldflags: []string{"overriden"},
Ldflags: []string{"overridden"},
})
})

Expand All @@ -1035,7 +1035,7 @@ func TestOverrides(t *testing.T) {
Goarch: "arm",
Goarm: "6",
BuildDetails: config.BuildDetails{
Ldflags: []string{"overriden"},
Ldflags: []string{"overridden"},
},
},
},
Expand All @@ -1045,7 +1045,7 @@ func TestOverrides(t *testing.T) {
Goarm: "6",
})
require.Equal(t, dets, config.BuildDetails{
Ldflags: []string{"overriden"},
Ldflags: []string{"overridden"},
})
})

Expand All @@ -1060,7 +1060,7 @@ func TestOverrides(t *testing.T) {
Goarch: "mips",
Gomips: "softfloat",
BuildDetails: config.BuildDetails{
Ldflags: []string{"overriden"},
Ldflags: []string{"overridden"},
},
},
},
Expand All @@ -1070,7 +1070,7 @@ func TestOverrides(t *testing.T) {
Gomips: "softfloat",
})
require.Equal(t, dets, config.BuildDetails{
Ldflags: []string{"overriden"},
Ldflags: []string{"overridden"},
})
})
}
Expand Down

0 comments on commit 3f593d7

Please sign in to comment.