fix debug statement in scheduled tasks

This commit is contained in:
Kenneth Kehl
2026-01-27 07:33:54 -08:00
parent 6ff3205f43
commit 0c10e1cdde
63 changed files with 230 additions and 464 deletions

View File

@@ -395,20 +395,16 @@ def test_strip_and_remove_obscure_whitespace_only_removes_normal_whitespace_from
def test_remove_smart_quotes_from_email_addresses():
assert (
remove_smart_quotes_from_email_addresses(
"""
remove_smart_quotes_from_email_addresses("""
line ones quote
first.olast@example.com is someones email address
line three
"""
)
== (
"""
""")
== ("""
line ones quote
first.o'last@example.com is someones email address
line three
"""
)
""")
)