1
1
Fork 0
mirror of https://github.com/goreleaser/nfpm synced 2024-03-28 14:30:08 +01:00

test: fix arch tests

This commit is contained in:
Carlos Alexandro Becker 2023-05-24 02:42:13 +00:00
parent 815b388464
commit 7d6a77bee6
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 0 additions and 14 deletions

View File

@ -1378,13 +1378,6 @@ func TestArches(t *testing.T) {
})
}
t.Run("mips64lesoftfloat", func(t *testing.T) {
info := exampleInfo()
info.Arch = "mips64le"
info = ensureValidArch(info)
require.Equal(t, "mips64el", info.Arch)
})
t.Run("override", func(t *testing.T) {
info := exampleInfo()
info.Deb.Arch = "foo64"

View File

@ -506,13 +506,6 @@ func TestArches(t *testing.T) {
})
}
t.Run("mips64lesoftfloat", func(t *testing.T) {
info := exampleInfo()
info.Arch = "mips64lesoftfloat"
info = ensureValidArch(info)
require.Equal(t, "mips64el", info.Arch)
})
t.Run("override", func(t *testing.T) {
info := exampleInfo()
info.RPM.Arch = "foo64"