From d902d652823f57a3caaacdc8b8982a7daeabea72 Mon Sep 17 00:00:00 2001 From: olivier Date: Mon, 16 Dec 2024 14:42:06 +0100 Subject: [PATCH] use @ in tests --- tests/test_proconnect_mapping.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_proconnect_mapping.py b/tests/test_proconnect_mapping.py index 39abb53..41725e5 100644 --- a/tests/test_proconnect_mapping.py +++ b/tests/test_proconnect_mapping.py @@ -10,8 +10,8 @@ class ProConnectMappingTest(aiounittest.AsyncTestCase): async def test_module(self): self.module = create_module({"user_id_lookup_fallback_rules": [ - {"match":"very-new.fr", "search": "beta.fr"}, - { "match":"new.fr","search":"beta.fr"} + {"match":"@very-new.fr", "search": "@beta.fr"}, + { "match":"@new.fr","search":"@beta.fr"} ]}) # Call the tested function with an email that requires replacement # user_id = await self.module.search_user_id_by_threepid("test@new.fr")