Update HtmlUtilTest for formattable text check

The commit changes some of the test cases for text formattability in HtmlUtilTest.cs. Notably, it modifies a repeated assertion with a string "<i>!?.", replacing it with a fresh assertion testing "!?.</i>".
This commit is contained in:
Ivandro Jao 2024-03-30 22:37:22 +00:00
parent cf8040977a
commit 11b5ee92d1

View File

@ -74,7 +74,7 @@ namespace Test.Logic
{
Assert.IsFalse(HtmlUtil.IsTextFormattable("<i></i>"));
Assert.IsFalse(HtmlUtil.IsTextFormattable("<i>!?."));
Assert.IsFalse(HtmlUtil.IsTextFormattable("<i>!?."));
Assert.IsFalse(HtmlUtil.IsTextFormattable("!?.</i>"));
}
[TestMethod]