diff options
author | Vadim Rutkovsky <vrutkovs@redhat.com> | 2014-04-11 08:02:38 +0800 |
---|---|---|
committer | Vadim Rutkovsky <vrutkovs@redhat.com> | 2014-04-11 08:04:11 +0800 |
commit | 31c2e79d3f015476b1411f00a411531e97408455 (patch) | |
tree | 10d0201cb32a1548ebec9d036a47d4b3ea00be47 | |
parent | fdaabeb412fa52bda00d6c247804b5910dff9871 (diff) | |
download | gsoc2013-evolution-31c2e79d3f015476b1411f00a411531e97408455.tar gsoc2013-evolution-31c2e79d3f015476b1411f00a411531e97408455.tar.gz gsoc2013-evolution-31c2e79d3f015476b1411f00a411531e97408455.tar.bz2 gsoc2013-evolution-31c2e79d3f015476b1411f00a411531e97408455.tar.lz gsoc2013-evolution-31c2e79d3f015476b1411f00a411531e97408455.tar.xz gsoc2013-evolution-31c2e79d3f015476b1411f00a411531e97408455.tar.zst gsoc2013-evolution-31c2e79d3f015476b1411f00a411531e97408455.zip |
tests: don't check that Skip Lookup button is hidden due to bug 726539
-rw-r--r-- | tests/steps/initial_setup_steps.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/steps/initial_setup_steps.py b/tests/steps/initial_setup_steps.py index caecfc62bd..5bf9591de8 100644 --- a/tests/steps/initial_setup_steps.py +++ b/tests/steps/initial_setup_steps.py @@ -60,8 +60,9 @@ def wait_for_account_to_be_looked_up(context): visible_skip_lookup = [x for x in skip_lookup if x.showing] if len(visible_skip_lookup) > 0: visible_skip_lookup = visible_skip_lookup[0] - assert wait_until(lambda x: not x.showing, visible_skip_lookup),\ - "Skip Lookup button didn't dissappear" + # bug https://bugzilla.gnome.org/show_bug.cgi?id=726539: Skip Lookup is not being removed + #assert wait_until(lambda x: not x.showing, visible_skip_lookup),\ + # "Skip Lookup button didn't dissappear" def click_next(window): |