Skip to content

Commit 4339734

Browse files
JayBazuzi4dsherwoodblade290GRWroboticssusanfung
committed
. t test_unicode_and_special_characters__passing
Co-Authored-By: 4dsherwood <4dsherwood@users.noreply.github.com> Co-Authored-By: Joss Hufnagel <43077216+blade290@users.noreply.github.com> Co-Authored-By: Glen Warren <45516388+GRWrobotics@users.noreply.github.com> Co-Authored-By: Susan Fung <38925660+susanfung@users.noreply.github.com>
1 parent 3a5dfc3 commit 4339734

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/test_inline_approvals.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,14 @@ def test_escape_backslashes_mixed_sequences() -> None:
263263
assert escape_backslashes(text) == "a\\b\\c\\n".replace("\\", "\\\\")
264264

265265

266+
def test_unicode_and_special_characters__passing() -> None:
267+
"""
268+
269+
"""
270+
text = "e\u0301" # 'e' + COMBINING ACUTE (2 code points)
271+
verify(text, options=Options().inline())
272+
273+
266274
def test_unicode_and_special_characters__mismatch() -> None:
267275
# TODO: consider inspecting the exception
268276
"""

0 commit comments

Comments
 (0)