Skip to content

Commit

Permalink
fix: wrong if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
pacostas authored and thitch97 committed Jan 19, 2024
1 parent 5945ef6 commit 3d062f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/init_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ func TestIntegration(t *testing.T) {
builder, err := pack.Builder.Inspect.Execute()
Expect(err).NotTo(HaveOccurred())

if builder.BuilderName == "paketocommunity/builder-ubi-buildpackless-base" {
settings.Extensions.UbiNodejsExtension.Online, err = buildpackStore.Get.
Execute(settings.Config.UbiNodejsExtension)
Expect(err).ToNot(HaveOccurred())
if builder.BuilderName == "paketocommunity/builder-ubi-buildpackless-base" {
}

settings.Buildpacks.NodeRunScript.Online, err = buildpackStore.Get.
Expand Down

0 comments on commit 3d062f0

Please sign in to comment.