Skip to content

Commit 30592d0

Browse files
committed
fixup! Fix TypeError on YamlItem by setting max_depth on runtest
1 parent a5c7620 commit 30592d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openfisca_core/tools/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def runtest(self) -> None:
259259
tracer = self.simulation.tracer
260260
if verbose:
261261
if max_depth is None:
262-
max_depth = sys.maxsize # Print full tree
262+
max_depth = sys.maxsize # Print trace full depth
263263
self.print_computation_log(tracer, aggregate, max_depth)
264264
if performance_graph:
265265
self.generate_performance_graph(tracer)

0 commit comments

Comments
 (0)