Skip to content

Commit a08176f

Browse files
SaifuddinMerchantKehrlann
authored andcommitted
minor fix for DeleteOrganizationRequestTest to test appropriate builder
1 parent 53d7a32 commit a08176f

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)