Force git subprocess in tests to use utf-8

This commit is contained in:
Deniz Turgut 2023-10-30 00:53:15 +03:00
commit f0aab11a2d
No known key found for this signature in database
GPG key ID: 87B7168D7AB3ED2F

View file

@ -232,7 +232,7 @@ def diff_subproc(first, second):
'-w', first, second],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
encoding="utf-8",
)