From 17418befcd57760ac8ae135e80c42a8e82e03596 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 22 Mar 2015 09:42:51 +0100 Subject: [PATCH] Fixed unittest for help entries --- evennia/commands/default/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/tests.py b/evennia/commands/default/tests.py index 343ceecd66..bd0a95d1b8 100644 --- a/evennia/commands/default/tests.py +++ b/evennia/commands/default/tests.py @@ -125,7 +125,7 @@ class TestHelp(CommandTest): def test_set_help(self): self.call(help.CmdSetHelp(), "testhelp, General = This is a test", "Topic 'testhelp' was successfully created.") - self.call(help.CmdHelp(), "testhelp", "Help topic for testhelp", cmdset=CharacterCmdSet()) + self.call(help.CmdHelp(), "testhelp", "Help for testhelp", cmdset=CharacterCmdSet()) class TestSystem(CommandTest):