diff --git a/test/jdk/com/sun/net/httpserver/SwitchingProtocolTest.java b/test/jdk/com/sun/net/httpserver/SwitchingProtocolTest.java index 4f5001e62f2..35dc9bf8e92 100644 --- a/test/jdk/com/sun/net/httpserver/SwitchingProtocolTest.java +++ b/test/jdk/com/sun/net/httpserver/SwitchingProtocolTest.java @@ -78,7 +78,7 @@ public class SwitchingProtocolTest { server.createContext( someContext, msg -> { - byte[] reply = RESPONSE_BODY.getBytes(UTF_8); + byte[] reply = RESPONSE_BODY.getBytes(UTF_8); System.err.println("Handling request: " + msg.getRequestURI()); try { msg.sendResponseHeaders(msgCode, -1); @@ -219,4 +219,4 @@ public class SwitchingProtocolTest { } System.out.println("Client finished."); } -} \ No newline at end of file +}