add missing paren

This commit is contained in:
InspectorCaracal 2024-03-30 14:14:30 -06:00 committed by GitHub
parent 540729e2b4
commit a0754d9f1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"""