We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RUF043.py
1 parent 0fc4e8f commit f0012dfCopy full SHA for f0012df
crates/ruff_linter/resources/test/fixtures/ruff/RUF043.py
@@ -78,8 +78,8 @@ def test_foo():
78
with pytest.raises(Tab, match="\\t"): ...
79
with pytest.raises(VerticalTab, match="\\v"): ...
80
with pytest.raises(HexEscape, match="\\xFF"): ...
81
- with pytest.raises(_16BitUnicodeEscape, match="\\FFFF"): ...
82
- with pytest.raises(_32BitUnicodeEscape, match="\\0010FFFF"): ...
+ with pytest.raises(_16BitUnicodeEscape, match="\\uFFFF"): ...
+ with pytest.raises(_32BitUnicodeEscape, match="\\U0010FFFF"): ...
83
84
## Escaped metasequences
85
0 commit comments