Applied rubocop.

This commit is contained in:
Thorsten Eckel 2015-07-16 17:19:46 +02:00
parent 32ea56c9d9
commit 7274fbdd4f

View file

@ -20,7 +20,7 @@ class TestCase < Test::Unit::TestCase
elsif browser == 'chrome' elsif browser == 'chrome'
browser_profile = Selenium::WebDriver::Chrome::Profile.new browser_profile = Selenium::WebDriver::Chrome::Profile.new
browser_profile["intl.accept_languages"] = "en" browser_profile['intl.accept_languages'] = 'en'
end end
browser_profile browser_profile
end end
@ -1242,7 +1242,7 @@ wait untill text in selector disabppears
found = nil found = nil
(1..10).each { (1..10).each {
next if found break if found
begin begin
text = instance.find_elements( { css: '.content.active .js-reset' } )[0].text text = instance.find_elements( { css: '.content.active .js-reset' } )[0].text
@ -1256,6 +1256,7 @@ wait untill text in selector disabppears
} }
if !found if !found
screenshot( browser: instance, comment: 'ticket_update_discard_message_failed' ) screenshot( browser: instance, comment: 'ticket_update_discard_message_failed' )
fail 'no discard message found' fail 'no discard message found'
end end
end end