Skip to content

Commit

Permalink
misssed file
Browse files Browse the repository at this point in the history
  • Loading branch information
colesnodgrass committed Oct 15, 2024
1 parent 9454dfc commit 5a750b0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions internal/cmd/images/manifest_cmd_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package images

import (
"context"
"sort"
"testing"

Expand All @@ -23,7 +24,7 @@ func TestManifestCmd(t *testing.T) {
cmd := ManifestCmd{
ChartVersion: "1.1.0",
}
actual, err := cmd.findAirbyteImages(client)
actual, err := cmd.findAirbyteImages(context.Background(), client)
if err != nil {
t.Fatal(err)
}
Expand Down Expand Up @@ -52,7 +53,7 @@ func TestManifestCmd_Enterprise(t *testing.T) {
ChartVersion: "1.1.0",
Values: "testdata/enterprise.values.yaml",
}
actual, err := cmd.findAirbyteImages(client)
actual, err := cmd.findAirbyteImages(context.Background(), client)
if err != nil {
t.Fatal(err)
}
Expand Down Expand Up @@ -86,7 +87,7 @@ func TestManifestCmd_Nightly(t *testing.T) {
ChartVersion: "1.1.0-nightly-1728428783-9025e1a46e",
Values: "testdata/enterprise.values.yaml",
}
actual, err := cmd.findAirbyteImages(client)
actual, err := cmd.findAirbyteImages(context.Background(), client)
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit 5a750b0

Please sign in to comment.