diff --git a/osu.Game.Tests/Visual/Online/TestSceneChatLink.cs b/osu.Game.Tests/Visual/Online/TestSceneChatLink.cs index 07657c53e5..e7337769fd 100644 --- a/osu.Game.Tests/Visual/Online/TestSceneChatLink.cs +++ b/osu.Game.Tests/Visual/Online/TestSceneChatLink.cs @@ -75,9 +75,11 @@ namespace osu.Game.Tests.Visual.Online [TestCase("[Markdown link format with escaped [and \\[ paired] braces](https://dev.ppy.sh/home)", LinkAction.External)] [TestCase("(Old link format with escaped (and \\( paired) parentheses)[https://dev.ppy.sh/home] and [[also a rogue wiki link]]", LinkAction.External, LinkAction.OpenWiki)] [TestCase("#lobby or #osu would be blue (and work) in the ChatDisplay test (when a proper ChatOverlay is present).")] // note that there's 0 links here (they get removed if a channel is not found) - [TestCase("Join my multiplayer game osump://12346.", LinkAction.JoinRoom)] - [TestCase("Join my multiplayer gameosump://12346.", LinkAction.JoinRoom)] - [TestCase("Join my [multiplayer game](osump://12346).", LinkAction.JoinRoom)] + [TestCase("Join my multiplayer game osu://room/12346.", LinkAction.JoinRoom)] + [TestCase("Join my multiplayer gameosu://room/12346.", LinkAction.JoinRoom)] + [TestCase("Join my [multiplayer game](osu://room/12346).", LinkAction.JoinRoom)] + [TestCase("Join my multiplayer game http://dev.ppy.sh/multiplayer/rooms/12346", LinkAction.JoinRoom)] + [TestCase("Join my [multiplayer game](http://dev.ppy.sh/multiplayer/rooms/12346).", LinkAction.JoinRoom)] [TestCase($"Join my [#english]({OsuGameBase.OSU_PROTOCOL}chan/#english).", LinkAction.OpenChannel)] [TestCase($"Join my {OsuGameBase.OSU_PROTOCOL}chan/#english.", LinkAction.OpenChannel)] [TestCase($"Join my{OsuGameBase.OSU_PROTOCOL}chan/#english.", LinkAction.OpenChannel)]