Bug 1812692 - TextInputDelegateTest Timeouts r=m_kato,geckoview-reviewers

Reducing the number of characters in the TextInputDelegateTest content
large test prevents timeouts from occurring when using UIAutomator.
UIAutomator tests will be reactivated in bug 1659818.

Differential Revision: https://phabricator.services.mozilla.com/D171899
This commit is contained in:
Olivia Hall 2023-03-08 14:10:43 +00:00
Родитель aba4fbcf67
Коммит f960ebd985
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -817,7 +817,7 @@ class TextInputDelegateTest : BaseSessionTest() {
// Child process updates require having a display.
@Test
fun inputConnection_largeText() {
val content = (1..1024000).map {
val content = (1..102400).map {
('a'..'z').random()
}.joinToString("")
setupContent(content)