From 36cbb2bf4cd02dccaa1c19cc7a9400c66d6e46f9 Mon Sep 17 00:00:00 2001 From: Looly Date: Tue, 25 May 2021 16:42:23 +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 1b71d0941..4c0384f53 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"); })