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):