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

tests: Rename local variable: prefix_abs -> prefix

Signed-off-by: Pavel Filipenský <pfilipensky@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>

Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Thu Jul 10 16:15:24 UTC 2025 on atb-devel-224
This commit is contained in:
Pavel Filipenský
2025-07-04 15:10:58 +02:00
committed by Andreas Schneider
parent 081d4fa10e
commit 3ca04b03bf

View File

@@ -37,8 +37,8 @@ class Smb3UnixTests(samba.tests.libsmb.LibsmbTests):
super().setUp()
self.samsid = os.environ["SAMSID"]
prefix_abs = os.environ["PREFIX"]
p = subprocess.run(['stat', '-f', '-c', '%T', prefix_abs], capture_output=True, text=True)
prefix = os.environ["PREFIX"]
p = subprocess.run(['stat', '-f', '-c', '%T', prefix], capture_output=True, text=True)
self.fstype = p.stdout.strip().lower()
def connections(self, share1=None, posix1=False, share2=None, posix2=True):