Skip to content

Commit 9c25a1c

Browse files
committed
Add tests with trailing periods
1 parent e593ab1 commit 9c25a1c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_request.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,8 @@ def test_clean_email():
229229
{"input": "foo@example.cam", "output": "foo@example.cam"},
230230
{"input": "foo@10000gmail.com", "output": "foo@gmail.com"},
231231
{"input": "foo@example.comcom", "output": "foo@example.com"},
232+
{"input": "foo@example.com.", "output": "foo@example.com"},
233+
{"input": "foo@example.com...", "output": "foo@example.com"},
232234
]
233235

234236
for test in tests:

0 commit comments

Comments
 (0)