[CI] Make the extremely long status message less long.
The old message, being 2048 chars long, apparently sometimes tripped up Ferrum or Chrome itself. The new, shorter, message does that less or not at all. It's still long enough, though, as the way we determine if a status message is "too long" is by height only, so line-breaks work.
This commit is contained in:
parent
3b07b16962
commit
c095959e6a
1 changed files with 2 additions and 2 deletions
|
|
@ -42,7 +42,7 @@ When /^I write the status message "([^"]*)"$/ do |text|
|
|||
end
|
||||
|
||||
When /^I insert an extremely long status message$/ do
|
||||
write_in_publisher("I am a very interesting message " * 64)
|
||||
write_in_publisher("long post\n" * 15)
|
||||
end
|
||||
|
||||
When /^I append "([^"]*)" to the publisher$/ do |text|
|
||||
|
|
@ -66,7 +66,7 @@ When /^I click the publisher and post "([^"]*)"$/ do |text|
|
|||
end
|
||||
|
||||
When /^I post an extremely long status message$/ do
|
||||
click_and_post("I am a very interesting message " * 64)
|
||||
click_and_post("long post\n" * 15)
|
||||
end
|
||||
|
||||
When /^I select "([^"]*)" on the aspect dropdown$/ do |text|
|
||||
|
|
|
|||
Loading…
Reference in a new issue