Skip to content

Commit 4b59ab8

Browse files
Update tests/pyreverse/test_writer.py
1 parent 01de52d commit 4b59ab8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/pyreverse/test_writer.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -277,10 +277,10 @@ def test_should_show_node_with_depth_limit(
277277
"""Test that nodes are filtered correctly when depth limit is set.
278278
279279
Depth counting is zero-based, determined by number of dots in path:
280-
- pkg -> depth 0 (0 dots)
281-
- pkg.subpkg -> depth 1 (1 dot)
282-
- pkg.subpkg.module -> depth 2 (2 dots)
283-
- pkg.subpkg.module.submodule -> depth 3 (3 dots)
280+
- 'pkg' -> depth 0 (0 dots)
281+
- 'pkg.subpkg' -> depth 1 (1 dot)
282+
- 'pkg.subpkg.module' -> depth 2 (2 dots)
283+
- 'pkg.subpkg.module.submodule' -> depth 3 (3 dots)
284284
"""
285285
writer = DiagramWriter(default_config)
286286
print("max_depth:", max_depth)

0 commit comments

Comments
 (0)