Skip to content

Commit

Permalink
Fix missing parameter in test
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Goff <[email protected]>
  • Loading branch information
cpuguy83 committed Jan 17, 2024
1 parent d3d103f commit 30fd08f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion targets/target_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"testing"

"dagger.io/dagger"
"github.com/Azure/moby-packaging/pkg/goversion"
"golang.org/x/sync/errgroup"
)

Expand All @@ -32,7 +33,7 @@ func TestApt(t *testing.T) {
if err != nil {
t.Fatal(err)
}
c, err := Jammy(ctx, client, platform)
c, err := Jammy(ctx, client, platform, goversion.DefaultVersion)
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit 30fd08f

Please sign in to comment.