Skip to content

Commit

Permalink
Fix test case in "getRootWidgetSummaryTree" test (flutter#149923)
Browse files Browse the repository at this point in the history
  • Loading branch information
elliette authored Jun 7, 2024
1 parent 15307a9 commit 6bdebcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/flutter/test/widgets/widget_inspector_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2027,9 +2027,9 @@ class _TestWidgetInspectorService extends TestWidgetInspectorService {
'objectGroup': group
},
))! as List<Object?>;
childrenJson = childJson['children']! as List<Object?>;
expect(alternateChildrenJson.length, equals(0));
// Tests are failing when this typo is fixed.
expect(childJson['chidlren'], isNull);
expect(childrenJson.length, equals(0));
});

testWidgets(
Expand Down

0 comments on commit 6bdebcf

Please sign in to comment.