Skip to content

Commit

Permalink
Fixed lint
Browse files Browse the repository at this point in the history
Signed-off-by: Colin Casey <[email protected]>
  • Loading branch information
colincasey committed Jul 27, 2023
1 parent b6440b8 commit 5e5c9c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/client/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ func testBuild(t *testing.T, when spec.G, it spec.S) {
})

when("meta-buildpack folder is used", func() {
it.Focus("resolves buildpack", func() {
it("resolves buildpack", func() {
metaBuildpackFolder := path.Join(tmpDir, "meta-buildpack")
err := os.Mkdir(metaBuildpackFolder, os.ModePerm)
h.AssertNil(t, err)
Expand Down Expand Up @@ -1045,7 +1045,9 @@ api = "0.2"

h.AssertNil(t, err)
h.AssertEq(t, fakeLifecycle.Opts.Builder.Name(), defaultBuilderImage.Name())

bldr, err := builder.FromImage(defaultBuilderImage)
h.AssertNil(t, err)

buildpack1Info := dist.ModuleInfo{ID: "buildpack.1.id", Version: "buildpack.1.version"}
buildpack2Info := dist.ModuleInfo{ID: "buildpack.2.id", Version: "buildpack.2.version"}
Expand Down

0 comments on commit 5e5c9c0

Please sign in to comment.