Skip to content

Commit

Permalink
Fix hash URL test on master
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgilder committed Jul 19, 2023
1 parent 5a15d62 commit e719883
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/web_nav_hash_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ void main() {
expect(
SystemNav.makePublicUrl(
RouteData('/new-path', pathTemplate: '/new-path'),
),
).replaceFirst('/web_nav_hash_test.html', ''),
'#/new-path',
);
});
Expand All @@ -19,7 +19,7 @@ void main() {
expect(
SystemNav.makePublicUrl(
RouteData('/new-path?', pathTemplate: '/new-path'),
),
).replaceFirst('/web_nav_hash_test.html', ''),
'#/new-path',
);
});
Expand All @@ -28,7 +28,7 @@ void main() {
expect(
SystemNav.makePublicUrl(
RouteData('/new-path?query=param', pathTemplate: '/new-path'),
),
).replaceFirst('/web_nav_hash_test.html', ''),
'#/new-path?query=param',
);
});
Expand Down

0 comments on commit e719883

Please sign in to comment.