Skip to content

Commit e38b9e5

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

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
@@ -312,10 +312,10 @@ def test_should_show_node_classes(
312312
"""Test class visibility based on their containing module depth.
313313
314314
Classes are filtered based on their containing module's depth:
315-
- MyClass -> depth 0 (no module)
316-
- pkg.MyClass -> depth 0 (module has no dots)
317-
- pkg.subpkg.MyClass -> depth 1 (module has 1 dot)
318-
- pkg.subpkg.mod.MyClass -> depth 2 (module has 2 dots)
315+
- 'MyClass' -> depth 0 (no module)
316+
- 'pkg.MyClass' -> depth 0 (module has no dots)
317+
- 'pkg.subpkg.MyClass' -> depth 1 (module has 1 dot)
318+
- 'pkg.subpkg.mod.MyClass' -> depth 2 (module has 2 dots)
319319
"""
320320
writer = DiagramWriter(default_config)
321321
print("max_depth:", max_depth)

0 commit comments

Comments
 (0)