From a6213b0d7ec62cdd298bf52f2ff5e04efb76c8e2 Mon Sep 17 00:00:00 2001 From: InspectorCaracal Date: Wed, 16 Nov 2022 14:45:06 -0700 Subject: [PATCH] correct $pron test --- evennia/utils/tests/test_funcparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/utils/tests/test_funcparser.py b/evennia/utils/tests/test_funcparser.py index 84bb197800..03c17fc437 100644 --- a/evennia/utils/tests/test_funcparser.py +++ b/evennia/utils/tests/test_funcparser.py @@ -477,7 +477,7 @@ class TestDefaultCallables(TestCase): ("male", "Char1 smiles at himself"), ("female", "Char1 smiles at herself"), ("neutral", "Char1 smiles at itself"), - ("plural", "Char1 smiles at itself"), + ("plural", "Char1 smiles at themselves"), ] ) def test_pronoun_gender(self, gender, expected):