[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:
Dennis Schubert 2023-06-13 05:00:29 +02:00
parent 3b07b16962
commit c095959e6a
No known key found for this signature in database
GPG key ID: 5A0304BEA7966D7E

View file

@ -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|