Skip to content

Commit 13885f7

Browse files
committed
Fix CRUD test
1 parent 3f57ee6 commit 13885f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration/tests/crud/creategetdelete_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ var _ = Describe("(Integration) Create, Get, Scale & Delete", func() {
533533
"1.1.1.1/32,2.2.2.0/24",
534534
"--approve",
535535
)).To(RunSuccessfully())
536-
Expect(k8sAPICall()).Should(HaveOccurred())
536+
Eventually(k8sAPICall, "5m", "20s").Should(HaveOccurred())
537537
})
538538

539539
It("should re-enable public access", func() {

pkg/nodebootstrap/assets/assets.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ var BootstrapHelperSh string
2121
var BootstrapUbuntuSh string
2222

2323
// AL2023XTablesLock holds the contents for creating a lock file for AL2023 AMIs.
24+
//
2425
//go:embed scripts/al2023-xtables.lock.sh
2526
var AL2023XTablesLock string
2627

27-
2828
// EfaAl2Sh holds the efa.al2.sh contents
2929
//
3030
//go:embed scripts/efa.al2.sh

0 commit comments

Comments
 (0)