From 677339389d3f27461e74a5b17cd809cdf40fc912 Mon Sep 17 00:00:00 2001 From: MaxandreOgeret Date: Wed, 24 Jan 2024 09:42:02 +0200 Subject: [PATCH] Corrected type test in test_commands.py --- test/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_commands.py b/test/test_commands.py index 98c083e..134b783 100644 --- a/test/test_commands.py +++ b/test/test_commands.py @@ -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',