aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_memfs.py
diff options
context:
space:
mode:
authorGravatar ionite34 <[email protected]>2022-11-28 11:53:54 +0800
committerGravatar ionite34 <[email protected]>2022-11-28 11:53:54 +0800
commit8272f88c3b50cc3912ae087b4f7eec506a5abaac (patch)
tree603d665e8569f03da59e391c689dbf8e69cdc4fa /tests/test_memfs.py
parentUpdate NSJail docstring (diff)
parse_files refactor as instance method
Diffstat (limited to 'tests/test_memfs.py')
-rw-r--r--tests/test_memfs.py2
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)