summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2024-09-24 10:59:23 +0200
committerRalph Boehme <slow@samba.org>2024-09-26 16:35:55 +0000
commit93db1c7f3bb4209b5d69b879bc506ca72b635bd7 (patch)
treef7e02227963fee1d34dcf17bcbf7d663228fb97b /python
parent342d45eddbde41b2ae27f8cd2299818da74d83a5 (diff)
downloadsamba-93db1c7f3bb4209b5d69b879bc506ca72b635bd7.tar.gz
samba-93db1c7f3bb4209b5d69b879bc506ca72b635bd7.tar.bz2
samba-93db1c7f3bb4209b5d69b879bc506ca72b635bd7.zip
pylibsmb: Fix a typo
pylibsmb is supposed to be used only internally, at least I hope this has not made it into an API that is perceived to be publically used. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org> Autobuild-User(master): Ralph Böhme <slow@samba.org> Autobuild-Date(master): Thu Sep 26 16:35:55 UTC 2024 on atb-devel-224
Diffstat (limited to 'python')
-rw-r--r--python/samba/tests/smb3unix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/samba/tests/smb3unix.py b/python/samba/tests/smb3unix.py
index 612a54e0f79..d8e8783670a 100644
--- a/python/samba/tests/smb3unix.py
+++ b/python/samba/tests/smb3unix.py
@@ -321,7 +321,7 @@ class Smb3UnixTests(samba.tests.libsmb.LibsmbTests):
self.assertTrue(stat.S_ISREG(found_unixmode))
self.assertEqual(found_files[fname]['nlink'], 1)
self.assertEqual(found_files[fname]['size'], 4)
- self.assertEqual(found_files[fname]['allocaction_size'],
+ self.assertEqual(found_files[fname]['allocation_size'],
4096)
self.assertEqual(found_files[fname]['attrib'],
libsmb.FILE_ATTRIBUTE_ARCHIVE)