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:
parent
e1feb723b9
commit
38af6be9fb
@ -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),
|
||||
),
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user