Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-11 21:16:39 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-11 21:16:39 (GMT)
commit2634e737c752756a4d5a2177c6a88babf2088ac1 (patch)
tree74c85789af52cbc22b6881d02d5aeee089ddf5c7
parent4ddc0b42785279b702abc9c362862a72aa683f18 (diff)
Swapped list and single child
-rw-r--r--tests/tree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tree.py b/tests/tree.py
index 329311a..8725098 100644
--- a/tests/tree.py
+++ b/tests/tree.py
@@ -49,7 +49,7 @@ class Node:
accessible = pyatspi.findDescendant(self._accessible, predicate)
if accessible is None:
- return []
+ return None
return Node(accessible)
@@ -63,7 +63,7 @@ class Node:
all_accessibles = pyatspi.findAllDescendants(self._accessible, predicate)
if not all_accessibles:
- return None
+ return []
return [Node(accessible) for accessible in all_accessibles]