Skip to content

Commit

Permalink
fix: actually run the centos tests
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
  • Loading branch information
caarlos0 committed Jun 24, 2023
1 parent 5181acc commit 6a60322
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions acceptance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -259,11 +259,11 @@ func TestDebSpecific(t *testing.T) {
}
}

func TestRpmCentosSign(t *testing.T) {
func TestRPMCentosSign(t *testing.T) {
t.Parallel()
for _, os := range []string{"centos9", "centos8"} {
os := os
t.Run(fmt.Sprintf("rpm/signed/amd64/%s", os), func(t *testing.T) {
t.Run(fmt.Sprintf("rpm/amd64/sign/%s", os), func(t *testing.T) {
t.Parallel()
target := "signed"
accept(t, acceptParms{
Expand All @@ -285,7 +285,7 @@ func TestDebSign(t *testing.T) {
for _, arch := range formatArchs["deb"] {
for _, sigtype := range []string{"dpkg-sig", "debsign"} {
func(t *testing.T, testSigtype, testArch string) {
t.Run(fmt.Sprintf("%s/%s", testArch, testSigtype), func(t *testing.T) {
t.Run(fmt.Sprintf("deb/%s/%s", testArch, testSigtype), func(t *testing.T) {
t.Parallel()
target := "signed"
if testSigtype == "dpkg-sig" {
Expand Down

0 comments on commit 6a60322

Please sign in to comment.