1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-18 08:23:51 +03:00

python:samba:tests: Fix code spelling

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Andreas Schneider
2023-06-06 13:28:13 +02:00
committed by Andreas Schneider
parent ab3792931b
commit d4798967c0
33 changed files with 58 additions and 56 deletions

View File

@@ -54,7 +54,8 @@ class XattrTests(TestCase):
samba.xattr_native.wrap_setxattr(tempf, "user.unittests",
ndr_pack(ntacl))
except IOError:
raise SkipTest("the filesystem where the tests are runned do not support XATTR")
raise SkipTest("the filesystem where the tests are run does not "
"support XATTR")
os.unlink(tempf)
def test_set_and_get_native(self):
@@ -68,7 +69,8 @@ class XattrTests(TestCase):
text = samba.xattr_native.wrap_getxattr(tempf, "user.unittests")
self.assertEqual(text, reftxt)
except IOError:
raise SkipTest("the filesystem where the tests are runned do not support XATTR")
raise SkipTest("the filesystem where the tests are run does not "
"support XATTR")
os.unlink(tempf)
def test_set_xattr_tdb(self):