Skip to content

Commit

Permalink
fix: wrong if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
pacostas committed Jan 5, 2024
1 parent 16bc004 commit 399f318
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 399f318

Please sign in to comment.