Skip to content

Commit f0012df

Browse files
Fix typos in RUF043.py (#15044)
(Accidentally introduced in #14966.)
1 parent 0fc4e8f commit f0012df

File tree

1 file changed

+2
-2
lines changed
  • crates/ruff_linter/resources/test/fixtures/ruff

1 file changed

+2
-2
lines changed

crates/ruff_linter/resources/test/fixtures/ruff/RUF043.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ def test_foo():
7878
with pytest.raises(Tab, match="\\t"): ...
7979
with pytest.raises(VerticalTab, match="\\v"): ...
8080
with pytest.raises(HexEscape, match="\\xFF"): ...
81-
with pytest.raises(_16BitUnicodeEscape, match="\\FFFF"): ...
82-
with pytest.raises(_32BitUnicodeEscape, match="\\0010FFFF"): ...
81+
with pytest.raises(_16BitUnicodeEscape, match="\\uFFFF"): ...
82+
with pytest.raises(_32BitUnicodeEscape, match="\\U0010FFFF"): ...
8383

8484
## Escaped metasequences
8585

0 commit comments

Comments
 (0)