Submitter | phabricator |
---|---|
Date | June 18, 2018, 12:33 p.m. |
Message ID | <59d9ed15768642ce6d88da039a5f8483@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/32260/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/tests/test-patch-offset.t b/tests/test-patch-offset.t --- a/tests/test-patch-offset.t +++ b/tests/test-patch-offset.t @@ -8,7 +8,7 @@ > fp = open(path, 'wb') > for pattern in patterns: > count = int(pattern[0:-1]) - > char = pattern[-1] + '\n' + > char = pattern[-1].encode('utf8') + b'\n' > fp.write(char*count) > fp.close() > EOF diff --git a/tests/test-import-context.t b/tests/test-import-context.t --- a/tests/test-import-context.t +++ b/tests/test-import-context.t @@ -10,7 +10,7 @@ > fp = open(path, 'wb') > for i, pattern in enumerate(patterns): > count = int(pattern[0:-1]) - > char = pattern[-1] + '\n' + > char = pattern[-1].encode('utf8') + b'\n' > if not lasteol and i == len(patterns) - 1: > fp.write((char*count)[:-1]) > else: