Skip to content

Commit

Permalink
uncomment required line
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyjesus-dev committed Aug 28, 2024
1 parent 8ab5f4a commit 90c896f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/observers_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ class DummyObservable extends NavigatorObserver {
}

@override
void didReplace({Route newRoute, Route oldRoute}) {
void didReplace({Route<dynamic> newRoute, Route oldRoute}) {
fakeLog.sayReplace();
//super.didReplace(newRoute, oldRoute);
super.didReplace(newRoute: newRoute, oldRoute: oldRoute);
}
}

Expand Down

0 comments on commit 90c896f

Please sign in to comment.