From f524f92d76ad5f0aef9b7a65539a846b1722068a Mon Sep 17 00:00:00 2001 From: Tejas <98106526+ToxicBiohazard@users.noreply.github.com> Date: Mon, 6 Apr 2026 03:04:10 +0000 Subject: [PATCH] fix: update academy support link in OtherCog and corresponding test --- src/cmds/core/other.py | 2 +- tests/src/cmds/core/test_other.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cmds/core/other.py b/src/cmds/core/other.py index 2dcd280..11e5bf2 100644 --- a/src/cmds/core/other.py +++ b/src/cmds/core/other.py @@ -142,7 +142,7 @@ async def support( """A simple reply providing a link to the support desk article on how to get support.""" if platform == "academy": return await ctx.respond( - "https://help.hackthebox.com/en/articles/5987511-contacting-academy-support" + "https://help.hackthebox.com/en/articles/13645526-contacting-academy-support" ) return await ctx.respond( "https://help.hackthebox.com/en/articles/5986762-contacting-htb-support" diff --git a/tests/src/cmds/core/test_other.py b/tests/src/cmds/core/test_other.py index aeab30b..5b9fc40 100644 --- a/tests/src/cmds/core/test_other.py +++ b/tests/src/cmds/core/test_other.py @@ -101,7 +101,7 @@ async def test_support_academy(self, bot, ctx): # Command should respond with a string. assert isinstance(content, str) - assert content == "https://help.hackthebox.com/en/articles/5987511-contacting-academy-support" + assert content == "https://help.hackthebox.com/en/articles/13645526-contacting-academy-support" @pytest.mark.asyncio async def test_support_urls_different(self, bot, ctx):