From d3e4c4737b14408fccaff2b89f260e81d90fb14e Mon Sep 17 00:00:00 2001 From: Joe Guo Date: Thu, 5 Apr 2018 14:49:55 +1200 Subject: [PATCH] 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 --- python/samba/tests/xattr.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/samba/tests/xattr.py b/python/samba/tests/xattr.py index b024175a8d6b..8e6178bed75b 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", -- 2.34.1