Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-11 20:53:33 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-11 20:53:33 (GMT)
commitbccf1585d8f1187fcf7462aea0033749ddf2c935 (patch)
tree42b8b44ae73c9e2a2325c58253dfc440985b9e37 /tests
parentbc518de415454effe5be7737122eb1efd7d5761c (diff)
Missing return
Diffstat (limited to 'tests')
-rw-r--r--tests/tree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tree.py b/tests/tree.py
index 7988edd..5458794 100644
--- a/tests/tree.py
+++ b/tests/tree.py
@@ -54,7 +54,7 @@ class Node:
@retry_find
def find_children(self, name=None, role_name=None):
- self._find_children_internal(name, role_name)
+ return self._find_children_internal(name, role_name)
def _find_children_internal(self, name=None, role_name=None):
def predicate(accessible):