Skip to content

Commit

Permalink
Fix typos in RUF043.py (#15044)
Browse files Browse the repository at this point in the history
(Accidentally introduced in #14966.)
  • Loading branch information
InSyncWithFoo authored Dec 18, 2024
1 parent 0fc4e8f commit f0012df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/ruff_linter/resources/test/fixtures/ruff/RUF043.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit f0012df

Please sign in to comment.