Skip to content

Commit 352ebfd

Browse files
committed
Formatting
1 parent 312d972 commit 352ebfd

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

packages/flutter/test/navigation/sentry_navigator_observer_test.dart

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff 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', () {

0 commit comments

Comments
 (0)