Removing pending block for a bug that was resolved

Had to increase timeout that waits for a div to disappear, the default
5 seconds was not enough. Increased timeout also fixes this test that
fails sometimes: http://goo.gl/YXBDAj

Bug: 56885
Change-Id: I2def25828865a21eb321d0d9ea2e57764d86c1a2
This commit is contained in:
Zeljko Filipin
2013-12-17 11:21:37 +01:00
committed by Nikerabbit
parent 55686de27e
commit f647453a39
2 changed files with 2 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ end
When(/^I apply the changes$/) do When(/^I apply the changes$/) do
on(PanelPage) do |page| on(PanelPage) do |page|
page.panel_button_apply_element.click page.panel_button_apply_element.click
page.language_settings_dialog_element.when_not_present page.language_settings_dialog_element.when_not_present(10)
end end
end end

View File

@@ -18,9 +18,7 @@ When(/^I select (.*?) font for the content language$/) do |font|
step "I open the Universal Language Selector" step "I open the Universal Language Selector"
step "I open Display panel of language settings" step "I open Display panel of language settings"
step "I open Fonts panel of language settings" step "I open Fonts panel of language settings"
pending("Bug 56885") do step "I select #{font} font for the content language for the live preview"
step "I select #{font} font for the content language for the live preview"
end
step "I apply the changes" step "I apply the changes"
end end