From 98a64889d8a7498898a1e00774eede15150fde8e Mon Sep 17 00:00:00 2001 From: pktxu <5881103+pktxu@users.noreply.github.com> Date: Tue, 19 Dec 2023 17:31:48 +0100 Subject: [PATCH] spotless formatting --- .../kubernetes/client/internal/CertUtilsTest.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kubernetes-client-api/src/test/java/io/fabric8/kubernetes/client/internal/CertUtilsTest.java b/kubernetes-client-api/src/test/java/io/fabric8/kubernetes/client/internal/CertUtilsTest.java index 8ae5909e8ac..fbc9a9b8047 100644 --- a/kubernetes-client-api/src/test/java/io/fabric8/kubernetes/client/internal/CertUtilsTest.java +++ b/kubernetes-client-api/src/test/java/io/fabric8/kubernetes/client/internal/CertUtilsTest.java @@ -186,23 +186,23 @@ void getInputStreamFromDataOrFileShouldDecodeBase64EncodedString() throws IOExce } @Test - public void testECKeyLoad() throws InvalidKeySpecException, CertificateException, NoSuchAlgorithmException, KeyStoreException, IOException { + public void testECKeyLoad() + throws InvalidKeySpecException, CertificateException, NoSuchAlgorithmException, KeyStoreException, IOException { String privateKeyPath = Utils.filePath(getClass().getResource("/ssl-test/fabric8-ec.paired.key")); String certPath = Utils.filePath(getClass().getResource("/ssl-test/fabric8-ec.cert")); - KeyStore trustStore = - CertUtils.createKeyStore(null, certPath, null, privateKeyPath, "EC", "foo", null, null); + KeyStore trustStore = CertUtils.createKeyStore(null, certPath, null, privateKeyPath, "EC", "foo", null, null); assertEquals(1, trustStore.size()); } @Test - public void testECKeyOnlyLoad() throws InvalidKeySpecException, CertificateException, NoSuchAlgorithmException, KeyStoreException, IOException { + public void testECKeyOnlyLoad() + throws InvalidKeySpecException, CertificateException, NoSuchAlgorithmException, KeyStoreException, IOException { String privateKeyPath = Utils.filePath(getClass().getResource("/ssl-test/fabric8-ec.private-only.key")); String certPath = Utils.filePath(getClass().getResource("/ssl-test/fabric8-ec.cert")); - KeyStore trustStore = - CertUtils.createKeyStore(null, certPath, null, privateKeyPath, "EC", "foo", null, null); + KeyStore trustStore = CertUtils.createKeyStore(null, certPath, null, privateKeyPath, "EC", "foo", null, null); assertEquals(1, trustStore.size()); }