From b25d36fdf79e91dc3657477bf83f4a3f4463470d Mon Sep 17 00:00:00 2001 From: Shrikant Sharat Kandula Date: Fri, 19 Apr 2024 17:07:45 +0530 Subject: [PATCH] chore: Fix build error in ApplicationForkingServiceTests --- .../solutions/ApplicationForkingServiceTests.java | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/app/server/appsmith-server/src/test/java/com/appsmith/server/solutions/ApplicationForkingServiceTests.java b/app/server/appsmith-server/src/test/java/com/appsmith/server/solutions/ApplicationForkingServiceTests.java index 80589d51c5..cea77630c5 100644 --- a/app/server/appsmith-server/src/test/java/com/appsmith/server/solutions/ApplicationForkingServiceTests.java +++ b/app/server/appsmith-server/src/test/java/com/appsmith/server/solutions/ApplicationForkingServiceTests.java @@ -11,7 +11,6 @@ import com.appsmith.external.models.DatasourceStorageDTO; import com.appsmith.external.models.Endpoint; import com.appsmith.external.models.JSValue; import com.appsmith.external.models.OAuth2; -import com.appsmith.external.models.PEMCertificate; import com.appsmith.external.models.PluginType; import com.appsmith.external.models.Policy; import com.appsmith.external.models.Property; @@ -1457,11 +1456,7 @@ public class ApplicationForkingServiceTests { new UploadedFile("caCertFile", "caCert file content"), new UploadedFile("keyFile", "key file content"), new UploadedFile("certFile", "cert file content"), - new UploadedFile("caCertFile", "caCert file content"), - true, - new PEMCertificate( - new UploadedFile("pemCertFile", "pem cert file content"), - "pem cert file password")), + new UploadedFile("caCertFile", "caCert file content")), "default db")); dc.setEndpoints(List.of(new Endpoint("host1", 1L), new Endpoint("host2", 2L))); @@ -1689,11 +1684,7 @@ public class ApplicationForkingServiceTests { new UploadedFile("caCertFile", "caCert file content"), new UploadedFile("keyFile", "key file content"), new UploadedFile("certFile", "cert file content"), - new UploadedFile("caCertFile", "caCert file content"), - true, - new PEMCertificate( - new UploadedFile("pemCertFile", "pem cert file content"), - "pem cert file password")), + new UploadedFile("caCertFile", "caCert file content")), "default db")); dc.setEndpoints(List.of(new Endpoint("host1", 1L), new Endpoint("host2", 2L)));