Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dhdaines committed Sep 19, 2024
1 parent e137f20 commit c0fc003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_pdfminer_psparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,8 @@ def test_new_parser_strings() -> None:
list_parsers(b"(foo\r)", [(0, b"foo\n")])
list_parsers(b"(foo\r\nbar\r\nbaz)", [(0, b"foo\nbar\nbaz")])
list_parsers(b"(foo\n)", [(0, b"foo\n")])
list_parsers(br"(foo\r\nbaz)", [(0, b"foo\r\nbaz")])
list_parsers(br"(foo\r\nbar\r\nbaz)", [(0, b"foo\r\nbar\r\nbaz")])
list_parsers(rb"(foo\r\nbaz)", [(0, b"foo\r\nbaz")])
list_parsers(rb"(foo\r\nbar\r\nbaz)", [(0, b"foo\r\nbar\r\nbaz")])
list_parsers(
rb"( This string contains \245two octal characters\307 . )",
[(0, b" This string contains \245two octal characters\307 . ")],
Expand Down

0 comments on commit c0fc003

Please sign in to comment.