[tests] fix test_depth

depth is now a property
This commit is contained in:
Yann Lanthony 2017-10-13 16:38:07 +02:00
parent b27db8fc7a
commit bc5bb96c2e

View file

@ -13,9 +13,9 @@ def test_depth():
(tB.output, tC.input) (tB.output, tC.input)
) )
assert tA.getDepth() == 1 assert tA.depth == 1
assert tB.getDepth() == 2 assert tB.depth == 2
assert tC.getDepth() == 3 assert tC.depth == 3
if __name__ == '__main__': if __name__ == '__main__':