From 4af0de0f6a7d4d9b2b9d6e373ba586c8e36c3ad2 Mon Sep 17 00:00:00 2001 From: Ilay Rosenberg Date: Fri, 21 Jan 2022 18:27:08 +0200 Subject: [PATCH] Fixed formatting issues --- tests/shell.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/shell.py b/tests/shell.py index df12a1cd8..41a8be0f9 100644 --- a/tests/shell.py +++ b/tests/shell.py @@ -124,8 +124,10 @@ def msize(path): w.write('0') os.utime(path, (0, 0)) + def mount_tmpfs(path): os.system(f'mount -t tmpfs none {path}') + def unmount(path): os.system(f'umount {path}')