Description: Add missing b prefix to a byte-tring in the big-endian code path
Author: Stefano Rivera <stefanor@debian.org>
Forwarded: https://bitbucket.org/cffi/cffi/pull-request/12/linux-isnt-the-only-platform-using-glibc
Last-Update: 2013-03-30

--- a/testing/backend_tests.py
+++ b/testing/backend_tests.py
@@ -1093,7 +1093,7 @@
             assert content.startswith(b'\x64\x00\x00\x00\x65\x00\x00\x00')
             b[4] = b'\x45'
         else:
-            assert content.startswith('\x00\x00\x00\x64\x00\x00\x00\x65')
+            assert content.startswith(b'\x00\x00\x00\x64\x00\x00\x00\x65')
             b[7] = b'\x45'
         assert len(content) == 4 * 10
         assert a[1] == 0x45
