22// Use of this source code is governed by a BSD-style license that can be
33// found in the LICENSE file.
44
5- // no-shuffle:
6- // //TODO(gspencergoog): Remove this tag once this test's state leaks/test
7- // dependencies have been fixed.
8- // https://github.com/flutter/flutter/issues/85160
9- // Fails with "flutter test --test-randomize-ordering-seed=456"
105// reduced-test-set:
116// This file is run as part of a reduced test set in CI on Mac and Windows
127// machines.
@@ -3750,7 +3745,7 @@ class _TestWidgetInspectorService extends TestWidgetInspectorService {
37503745 _CreationLocation location = knownLocations[id]! ;
37513746 expect (location.file, equals (file));
37523747 // ClockText widget.
3753- expect (location.line, equals (60 ));
3748+ expect (location.line, equals (55 ));
37543749 expect (location.column, equals (9 ));
37553750 expect (location.name, equals ('ClockText' ));
37563751 expect (count, equals (1 ));
@@ -3760,7 +3755,7 @@ class _TestWidgetInspectorService extends TestWidgetInspectorService {
37603755 location = knownLocations[id]! ;
37613756 expect (location.file, equals (file));
37623757 // Text widget in _ClockTextState build method.
3763- expect (location.line, equals (98 ));
3758+ expect (location.line, equals (93 ));
37643759 expect (location.column, equals (12 ));
37653760 expect (location.name, equals ('Text' ));
37663761 expect (count, equals (1 ));
@@ -3787,7 +3782,7 @@ class _TestWidgetInspectorService extends TestWidgetInspectorService {
37873782 location = knownLocations[id]! ;
37883783 expect (location.file, equals (file));
37893784 // ClockText widget.
3790- expect (location.line, equals (60 ));
3785+ expect (location.line, equals (55 ));
37913786 expect (location.column, equals (9 ));
37923787 expect (location.name, equals ('ClockText' ));
37933788 expect (count, equals (3 )); // 3 clock widget instances rebuilt.
@@ -3797,7 +3792,7 @@ class _TestWidgetInspectorService extends TestWidgetInspectorService {
37973792 location = knownLocations[id]! ;
37983793 expect (location.file, equals (file));
37993794 // Text widget in _ClockTextState build method.
3800- expect (location.line, equals (98 ));
3795+ expect (location.line, equals (93 ));
38013796 expect (location.column, equals (12 ));
38023797 expect (location.name, equals ('Text' ));
38033798 expect (count, equals (3 )); // 3 clock widget instances rebuilt.
0 commit comments