diff options
Diffstat (limited to 'Lib/test/test_xdrlib.py')
-rw-r--r-- | Lib/test/test_xdrlib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_xdrlib.py b/Lib/test/test_xdrlib.py index d0fb1e5..44d5a82 100644 --- a/Lib/test/test_xdrlib.py +++ b/Lib/test/test_xdrlib.py @@ -8,8 +8,8 @@ class XDRTest(unittest.TestCase): def test_xdr(self): p = xdrlib.Packer() - s = 'hello world' - a = ['what', 'is', 'hapnin', 'doctor'] + s = b'hello world' + a = [b'what', b'is', b'hapnin', b'doctor'] p.pack_int(42) p.pack_uint(9) |