Skip to content

Commit 95bce8b

Browse files
committed
ci: fix test checking for default domain
1 parent c868bd4 commit 95bce8b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

integration-test/src/test/java/org/cloudfoundry/client/v3/OrganizationsTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ public void getDefaultDomain() {
179179
.build()))
180180
.map(GetOrganizationDefaultDomainResponse::getName)
181181
.as(StepVerifier::create)
182-
.consumeNextWith(name -> assertThat(name).contains("apps.", ".cf-app.com"))
182+
.consumeNextWith(
183+
name -> assertThat(name).contains("apps.", ".shepherd.tanzu.broadcom.net"))
183184
.expectComplete()
184185
.verify(Duration.ofMinutes(5));
185186
}

0 commit comments

Comments
 (0)