Skip to content

Commit

Permalink
STY: Change argument type (#2741)
Browse files Browse the repository at this point in the history
Second argument of test_b changed from str to bytes.
  • Loading branch information
j-t-1 authored Jul 8, 2024
1 parent c96d01c commit 4fab353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def test_mark_location():
("😀😃", "😀😃".encode()),
],
)
def test_b(input_str: str, expected: str):
def test_b(input_str: str, expected: bytes):
assert pypdf._utils.b_(input_str) == expected


Expand Down

0 comments on commit 4fab353

Please sign in to comment.