[evolution] tests: correctly calculate combobox/textbox pair



commit 9c7bc3fb7be052783b6b84e3efd01b112ef2018c
Author: Vadim Rutkovsky <vrutkovs redhat com>
Date:   Tue Jun 10 16:28:21 2014 +0200

    tests: correctly calculate combobox/textbox pair

 tests/steps/addressbook_steps.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/tests/steps/addressbook_steps.py b/tests/steps/addressbook_steps.py
index 37dda44..14bdaff 100644
--- a/tests/steps/addressbook_steps.py
+++ b/tests/steps/addressbook_steps.py
@@ -258,7 +258,7 @@ def get_combobox_textbox_object(contact_editor, section):
         combo_row = combo.position[1]
         matching_textboxes = [
             x for x in textboxes
-            if (x.position[1] - combo_row < 10) and (x.position[0] > combo.position[0])]
+            if ((x.position[1] - combo_row) == 0) and (x.position[0] > combo.position[0])]
         if (matching_textboxes != []):
             correct_textbox = min(matching_textboxes, key=lambda x: x.position[0])
             result.append((combo, correct_textbox))


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]