mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
add missing paren
This commit is contained in:
parent
540729e2b4
commit
a0754d9f1a
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ class TestCraftingRecipeBase(BaseEvenniaTestCase):
|
|||
"""Test messaging to crafter"""
|
||||
|
||||
self.recipe.msg("message")
|
||||
self.crafter.msg.assert_called_with(text="message", {"type": "crafting"}))
|
||||
self.crafter.msg.assert_called_with(text=("message", {"type": "crafting"}))
|
||||
|
||||
def test_pre_craft(self):
|
||||
"""Test validating hook"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue