diff options
author | 2022-11-28 11:53:54 +0800 | |
---|---|---|
committer | 2022-11-28 11:53:54 +0800 | |
commit | 8272f88c3b50cc3912ae087b4f7eec506a5abaac (patch) | |
tree | 603d665e8569f03da59e391c689dbf8e69cdc4fa /tests/test_memfs.py | |
parent | Update NSJail docstring (diff) |
parse_files refactor as instance method
Diffstat (limited to 'tests/test_memfs.py')
-rw-r--r-- | tests/test_memfs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_memfs.py b/tests/test_memfs.py index 2876613..8050562 100644 --- a/tests/test_memfs.py +++ b/tests/test_memfs.py @@ -47,7 +47,7 @@ class MemFSTests(TestCase): attrgetter("home"), attrgetter("output"), lambda fs: fs.mkdir(""), - lambda fs: list(fs.attachments(1)), + lambda fs: list(fs.files(1)), ] memfs = MemFS(10) |