增加HtmlUtil.cleanEmptyTag方法(pr#3838@Github)

This commit is contained in:
Looly 2025-01-10 09:58:29 +08:00
parent e097df5bdb
commit 5f57da864d
2 changed files with 5 additions and 3 deletions

View File

@ -2,10 +2,11 @@
# 🚀Changelog
-------------------------------------------------------------------------------------------------------------
# 5.8.36(2025-01-09)
# 5.8.36(2025-01-10)
### 🐣新特性
* 【crypto 】 增加BCUtil.decodeECPrivateKey方法issue#3829@Github
* 【core 】 增加HtmlUtil.cleanEmptyTag方法pr#3838@Github
### 🐞Bug修复
* 【aop 】 修复ProxyUtil可能的空指针问题issue#IBF20Z@Gitee
* 【core 】 修复XmlUtil转义调用方法错误问题修复XmlEscape未转义单引号问题pr#3837@Github

View File

@ -1,8 +1,9 @@
package cn.hutool.http;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
/**
* Html单元测试
*
@ -78,7 +79,7 @@ public class HtmlUtilTest {
}
@Test
public void cleanEmptyTag() {
public void cleanEmptyTagTest() {
String str = "<p></p><div></div>";
String result = HtmlUtil.cleanEmptyTag(str);
assertEquals("", result);