File tree Expand file tree Collapse file tree
packages/flutter/test/navigation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1166,26 +1166,23 @@ void main() {
11661166
11671167 sut.didPush (route (RouteSettings (name: '/' )), null );
11681168
1169- expect (
1170- streamingFixture.fakeTracker.trackNonRootNavigationCalls, isEmpty);
1169+ expect (streamingFixture.fakeTracker.trackNonRootNavigationCalls, isEmpty);
11711170 });
11721171
11731172 test ('didPush does not call tracker when auto transactions disabled' , () {
11741173 final sut = streamingFixture.getSut (enableAutoTransactions: false );
11751174
11761175 sut.didPush (route (RouteSettings (name: '/dashboard' )), null );
11771176
1178- expect (
1179- streamingFixture.fakeTracker.trackNonRootNavigationCalls, isEmpty);
1177+ expect (streamingFixture.fakeTracker.trackNonRootNavigationCalls, isEmpty);
11801178 });
11811179
11821180 test ('didPush does not call tracker for ignored routes' , () {
11831181 final sut = streamingFixture.getSut (ignoreRoutes: ['/ignored' ]);
11841182
11851183 sut.didPush (route (RouteSettings (name: '/ignored' )), null );
11861184
1187- expect (
1188- streamingFixture.fakeTracker.trackNonRootNavigationCalls, isEmpty);
1185+ expect (streamingFixture.fakeTracker.trackNonRootNavigationCalls, isEmpty);
11891186 });
11901187
11911188 test ('didPop calls cancelCurrentRoute' , () {
You can’t perform that action at this time.
0 commit comments