Skip to content

Commit 3e61810

Browse files
committed
tests: update tests
1 parent a03b0ce commit 3e61810

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

tests/test_filesystem.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,7 @@ def get_path(recursive: bool) -> list[str]:
119119
assert get_path(recursive=True) == sorted(recursive_children)
120120

121121

122-
def test_unsafe_filesystem_build() -> None:
123-
dump = json.loads(TEST_FS.read_text())
124-
nodes = (Node.from_dump(node) for node in dump["nodes"].values())
125-
UserFileSystem.build_unsafe(nodes)
126-
127-
128-
def test_safe_filesystem_build() -> None:
122+
def test_filesystem_build() -> None:
129123
dump = json.loads(TEST_FS.read_text())
130124
nodes = (Node.from_dump(node) for node in dump["nodes"].values())
131125
fs = UserFileSystem.build(nodes)

0 commit comments

Comments
 (0)