From bab13de9344538c8c5b0c9ff58a4c125dad971d5 Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Tue, 18 Mar 2025 16:42:15 -0400 Subject: [PATCH] Update test_validators.py Fixing a test --- tests/app/main/test_validators.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/app/main/test_validators.py b/tests/app/main/test_validators.py index 09100f710..aaa79ad40 100644 --- a/tests/app/main/test_validators.py +++ b/tests/app/main/test_validators.py @@ -71,15 +71,13 @@ def test_sms_character_validation(client_request, msg): ( "∆ abc 📲 def 📵 ghi", ( - "You cannot use ∆, 📲 or 📵 in text messages. " - "They will not show up properly on everyone’s phones." + "Please remove the unaccepted character ∆, 📲 and 📵 in your message, then save again" ), ), ( "📵", ( - "You cannot use 📵 in text messages. " - "It will not show up properly on everyone’s phones." + "Please remove the unaccepted character 📵 in your message, then save again" ), ), ],