From: Thomas Heller Date: Thu, 12 Jul 2007 19:24:59 +0000 (+0000) Subject: Fix another test. X-Git-Tag: v3.0a1~659 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a76e8f67c0866d04c7370df580bcd7b0cb42297;p=python Fix another test. --- diff --git a/Lib/ctypes/test/test_strings.py b/Lib/ctypes/test/test_strings.py index 3100b79c8c..17c78a0a26 100644 --- a/Lib/ctypes/test/test_strings.py +++ b/Lib/ctypes/test/test_strings.py @@ -37,7 +37,7 @@ class StringArrayTestCase(unittest.TestCase): def test_c_buffer_raw(self): buf = c_buffer(32) - buf.raw = buffer("Hello, World") + buf.raw = buffer(b"Hello, World") self.failUnlessEqual(buf.value, "Hello, World") self.assertRaises(TypeError, setattr, buf, "value", buffer("abc")) self.assertRaises(ValueError, setattr, buf, "raw", buffer("x" * 100))