From 4ef0b89af3391bc73596ba5c9a986ba93d4c0d93 Mon Sep 17 00:00:00 2001 From: Abdul Rabbani Date: Fri, 13 May 2022 08:34:48 -0400 Subject: [PATCH] Update a test so it fails --- internal/boot/boot_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/boot/boot_test.go b/internal/boot/boot_test.go index 2c43791..ca83653 100644 --- a/internal/boot/boot_test.go +++ b/internal/boot/boot_test.go @@ -30,7 +30,7 @@ var _ = Describe("Boot", func() { }) Context("When the DB and BC are both up and running, and we check for a synced head", func() { It("Should not connect successfully", func() { - _, db, err := boot.BootApplication(context.Background(), dbAddress, dbPort, dbName, dbUsername, dbPassword, dbDriver, bcAddress, bcPort, bcConnectionProtocol, false) + _, db, err := boot.BootApplicationWithRetry(context.Background(), dbAddress, dbPort, dbName, dbUsername, dbPassword, dbDriver, bcAddress, bcPort, bcConnectionProtocol, false) defer db.Close() Expect(err).To(HaveOccurred()) })