Update test cases

This commit is contained in:
Andrew Hong 2023-07-12 21:13:10 -04:00
parent d62cfc1616
commit 5a43de1ace
1 changed files with 2 additions and 1 deletions

View File

@ -478,7 +478,7 @@ public void TestLinkComplex()
Content = "This is a [http://www.simple-test.com simple test] with some [traps] and [[wiki links]]. Don't forget to visit https://osu.ppy.sh (now!)[http://google.com]\uD83D\uDE12"
});
Assert.AreEqual("This is a simple test with some [traps] and wiki links. Don't forget to visit https://osu.ppy.sh now!\0\0\0", result.DisplayContent);
Assert.AreEqual("This is a simple test with some [traps] and wiki links. Don't forget to visit https://osu.ppy.sh now!", result.DisplayContent);
Assert.AreEqual(5, result.Links.Count);
Link f = result.Links.Find(l => l.Url == "https://dev.ppy.sh/wiki/wiki links");
@ -508,6 +508,7 @@ public void TestLinkComplex()
}
[Test]
[Ignore("https://github.com/ppy/osu/pull/24190")]
public void TestEmoji()
{
Message result = MessageFormatter.FormatMessage(new Message { Content = "Hello world\uD83D\uDE12<--This is an emoji,There are more:\uD83D\uDE10\uD83D\uDE00,\uD83D\uDE20" });