diff --git a/cloudfoundry-client/src/test/java/org/cloudfoundry/client/v3/organizations/DeleteOrganizationRequestTest.java b/cloudfoundry-client/src/test/java/org/cloudfoundry/client/v3/organizations/DeleteOrganizationRequestTest.java index d76a8b7d6d..2e5eeec092 100644 --- a/cloudfoundry-client/src/test/java/org/cloudfoundry/client/v3/organizations/DeleteOrganizationRequestTest.java +++ b/cloudfoundry-client/src/test/java/org/cloudfoundry/client/v3/organizations/DeleteOrganizationRequestTest.java @@ -27,12 +27,12 @@ void noOrganizationId() { assertThrows( IllegalStateException.class, () -> { - GetOrganizationRequest.builder().build(); + DeleteOrganizationRequest.builder().build(); }); } @Test void valid() { - GetOrganizationRequest.builder().organizationId("test-id").build(); + DeleteOrganizationRequest.builder().organizationId("test-id").build(); } }