From: Joe Guo Date: Thu, 5 Apr 2018 02:49:55 +0000 (+1200) Subject: selftest: enable py3 for samba.tests.xattr X-Git-Tag: talloc-2.1.13~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d3e4c4737b14408fccaff2b89f260e81d90fb14e;p=thirdparty%2Fsamba.git selftest: enable py3 for samba.tests.xattr Fix bytes and str issue. Signed-off-by: Joe Guo Reviewed-by: Andrew Bartlett Reviewed-by: Douglas Bagnall --- diff --git a/python/samba/tests/xattr.py b/python/samba/tests/xattr.py index b024175a8d6..8e6178bed75 100644 --- a/python/samba/tests/xattr.py +++ b/python/samba/tests/xattr.py @@ -58,7 +58,7 @@ class XattrTests(TestCase): if not samba.xattr_native.is_xattr_supported(): raise SkipTest() tempf = self._tmpfilename() - reftxt = "this is a test" + reftxt = b"this is a test" open(tempf, 'w').write("empty") try: samba.xattr_native.wrap_setxattr(tempf, "user.unittests", reftxt) @@ -96,7 +96,7 @@ class XattrTests(TestCase): def test_set_and_get_tdb(self): tempf = self._tmpfilename() eadb_path = self._eadbpath() - reftxt = "this is a test" + reftxt = b"this is a test" open(tempf, 'w').write("empty") try: samba.xattr_tdb.wrap_setxattr(eadb_path, tempf, "user.unittests", @@ -124,7 +124,7 @@ class XattrTests(TestCase): def test_set_and_get_posix_eadb(self): tempf = self._tmpfilename() eadb_path = self._eadbpath() - reftxt = "this is a test" + reftxt = b"this is a test" open(tempf, 'w').write("empty") try: samba.posix_eadb.wrap_setxattr(eadb_path, tempf, "user.unittests",