Skip to content

Commit

Permalink
Attempt at fixing sanitizer_test_runner for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienbernede committed May 2, 2023
1 parent 9686cb5 commit ea50090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tools/sanitizers/sanitizer_test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def run_sanitizer_test(strategy, kind):
output = test_program.stdout
error = test_program.stderr

expected_string = '{} of size 8'.format(kind.upper())
expected_string = b'{} of size 8'.format(kind.upper())
check_output(error, expected_string)


Expand Down

0 comments on commit ea50090

Please sign in to comment.