apupier commented on PR #26314:
URL: https://github.com/apache/camel/pull/26314#issuecomment-5661747000

   format issue:
   
   ```
   diff --git 
a/components/camel-oauth/src/test/java/org/apache/camel/test/oauth/SSLCertTrustTest.java
 
b/components/camel-oauth/src/test/java/org/apache/camel/test/oauth/SSLCertTrustTest.java
   index f9bfc3a6..7212862c 100644
   --- 
a/components/camel-oauth/src/test/java/org/apache/camel/test/oauth/SSLCertTrustTest.java
   +++ 
b/components/camel-oauth/src/test/java/org/apache/camel/test/oauth/SSLCertTrustTest.java
   @@ -78,7 +78,8 @@ class SSLCertTrustTest extends AbstractKeycloakTest {
                    try (var socket = serverSocket.accept()) {
                        // Read enough to satisfy the HTTP request, then send a 
minimal response
                        socket.getInputStream().read(new byte[1]);
   -                    socket.getOutputStream().write("HTTP/1.1 200 
OK\r\nContent-Length: 
0\r\n\r\n".getBytes(java.nio.charset.StandardCharsets.US_ASCII));
   +                    socket.getOutputStream().write("HTTP/1.1 200 
OK\r\nContent-Length: 0\r\n\r\n"
   +                            
.getBytes(java.nio.charset.StandardCharsets.US_ASCII));
                        socket.getOutputStream().flush();
                    } catch (IOException e) {
                        if (!serverSocket.isClosed()) {
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to