diff --git a/tests/test_task.py b/tests/test_task.py index 148e8e85..464056dd 100644 --- a/tests/test_task.py +++ b/tests/test_task.py @@ -13,9 +13,9 @@ def test_depth(): (tB.output, tC.input) ) - assert tA.getDepth() == 1 - assert tB.getDepth() == 2 - assert tC.getDepth() == 3 + assert tA.depth == 1 + assert tB.depth == 2 + assert tC.depth == 3 if __name__ == '__main__':