Fix typos in `RUF043.py` (#15044)

(Accidentally introduced in #14966.)
This commit is contained in:
InSync 2024-12-18 22:39:55 +07:00 committed by GitHub
parent 0fc4e8f795
commit f0012df686
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -78,8 +78,8 @@ def test_foo():
with pytest.raises(Tab, match="\\t"): ...
with pytest.raises(VerticalTab, match="\\v"): ...
with pytest.raises(HexEscape, match="\\xFF"): ...
with pytest.raises(_16BitUnicodeEscape, match="\\FFFF"): ...
with pytest.raises(_32BitUnicodeEscape, match="\\0010FFFF"): ...
with pytest.raises(_16BitUnicodeEscape, match="\\uFFFF"): ...
with pytest.raises(_32BitUnicodeEscape, match="\\U0010FFFF"): ...
## Escaped metasequences