Skip to content

Commit

Permalink
Corrected type test in test_commands.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxandreOgeret authored Jan 24, 2024
1 parent def59c9 commit 6773393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ def run_command(command, args=None, subfolder=None):


def adapt_command_output(output, cwd=None):
assert type(output) == bytes
assert type(output) is bytes
# replace message from older git versions
output = output.replace(
b'git checkout -b new_branch_name',
Expand Down

0 comments on commit 6773393

Please sign in to comment.