From dca24eab3679dd5fa81d9a4452ff295e20644b3c Mon Sep 17 00:00:00 2001 From: Looly Date: Tue, 25 May 2021 16:44:47 +0800 Subject: [PATCH] fix test --- .../src/test/java/cn/hutool/http/server/SimpleServerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hutool-http/src/test/java/cn/hutool/http/server/SimpleServerTest.java b/hutool-http/src/test/java/cn/hutool/http/server/SimpleServerTest.java index 4c0384f53..1b71d0941 100644 --- a/hutool-http/src/test/java/cn/hutool/http/server/SimpleServerTest.java +++ b/hutool-http/src/test/java/cn/hutool/http/server/SimpleServerTest.java @@ -50,7 +50,7 @@ public class SimpleServerTest { } ) // 测试输出响应内容是否能正常返回Content-Length头信息 - .addAction("test/zeroStr", (req, res) -> { + .addAction("test/zeroStr", (req, res)-> { res.write("0"); Console.log("Write 0 OK"); })