Reduce the depth used in a test that applies finders to deep widget trees (#151049)

With today's random test order (--test-randomize-ordering-seed=20240629) this test is failing due to stack overflows when run on Windows.
This commit is contained in:
Jason Simmons 2024-06-29 13:06:24 -07:00 committed by GitHub
parent e1feb723b9
commit 38af6be9fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -770,11 +770,11 @@ void main() {
Directionality(
textDirection: TextDirection.ltr,
child: _deepWidgetTree(
depth: 1000,
depth: 500,
child: Row(
children: <Widget>[
_deepWidgetTree(
depth: 1000,
depth: 500,
child: const Column(children: fooBarTexts),
),
],