From 07b697ca7627f89ce316ba199d3eb5e59489572a Mon Sep 17 00:00:00 2001 From: "Merchant, Saifuddin A" Date: Fri, 22 Aug 2025 11:10:34 -0700 Subject: [PATCH] minor fix for DeleteOrganizationRequestTest to test appropriate builder --- .../v3/organizations/DeleteOrganizationRequestTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); } }