Skip to content

Commit 1e85cb7

Browse files
Merge branch 'main' into feature/implement-organizationquotas-version-3-api
2 parents e6570c2 + a08176f commit 1e85cb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloudfoundry-client/src/test/java/org/cloudfoundry/client/v3/organizations/DeleteOrganizationRequestTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ void noOrganizationId() {
2727
assertThrows(
2828
IllegalStateException.class,
2929
() -> {
30-
GetOrganizationRequest.builder().build();
30+
DeleteOrganizationRequest.builder().build();
3131
});
3232
}
3333

3434
@Test
3535
void valid() {
36-
GetOrganizationRequest.builder().organizationId("test-id").build();
36+
DeleteOrganizationRequest.builder().organizationId("test-id").build();
3737
}
3838
}

0 commit comments

Comments
 (0)