Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoloboschi committed Nov 14, 2023
1 parent 4b42a02 commit 8f7031a
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ void testAppController() {
deployment
.getClient()
.resource(
new SecretBuilder().withNewMetadata().withName(applicationId).endMetadata().build())
new SecretBuilder()
.withNewMetadata()
.withName(applicationId)
.endMetadata()
.build())
.inNamespace(namespace)
.serverSideApply();
final ApplicationCustomResource createdCr =
Expand Down Expand Up @@ -127,7 +131,6 @@ void testAppController() {
patchCustomResourceWithStatusDone(createdCr);
awaitJobCompleted(namespace, job.getMetadata().getName());


Awaitility.await()
.atMost(Duration.ofSeconds(30))
.untilAsserted(
Expand Down

0 comments on commit 8f7031a

Please sign in to comment.