diff --git a/bricks/dart_frog_new/hooks/test/pre_gen_test.dart b/bricks/dart_frog_new/hooks/test/pre_gen_test.dart index 1ddee192a..d19cf0a96 100644 --- a/bricks/dart_frog_new/hooks/test/pre_gen_test.dart +++ b/bricks/dart_frog_new/hooks/test/pre_gen_test.dart @@ -65,7 +65,7 @@ const validRouteConfiguration = RouteConfiguration( files: [], middleware: [], params: [], - ) + ), ], routes: [ RouteFile( @@ -88,7 +88,7 @@ const validRouteConfiguration = RouteConfiguration( route: '/', params: [], wildcard: false, - ) + ), ], endpoints: { '/': [ @@ -98,7 +98,7 @@ const validRouteConfiguration = RouteConfiguration( route: '/', params: [], wildcard: false, - ) + ), ], '//existing_as_file': [ RouteFile( @@ -107,7 +107,7 @@ const validRouteConfiguration = RouteConfiguration( route: '/existing_as_file', params: [], wildcard: false, - ) + ), ], '//existing_as_dir': [ RouteFile( @@ -116,7 +116,7 @@ const validRouteConfiguration = RouteConfiguration( route: '/', params: [], wildcard: false, - ) + ), ], }, rogueRoutes: [], diff --git a/bricks/dart_frog_new/hooks/test/src/normalize_route_path_test.dart b/bricks/dart_frog_new/hooks/test/src/normalize_route_path_test.dart index f5badf06f..eeae38a11 100644 --- a/bricks/dart_frog_new/hooks/test/src/normalize_route_path_test.dart +++ b/bricks/dart_frog_new/hooks/test/src/normalize_route_path_test.dart @@ -24,7 +24,7 @@ void main() { '[id]/item': '//item', '//item': '//item', '/this has space/really': '/this%20has%20space/really', - '/who/does/not/../this/.': '/who/does/this' + '/who/does/not/../this/.': '/who/does/this', }; for (final entry in expectedMappings.entries) { diff --git a/bricks/dart_frog_new/hooks/test/src/route_configuration_utils_test.dart b/bricks/dart_frog_new/hooks/test/src/route_configuration_utils_test.dart index 0ce2eed8c..f267d6103 100644 --- a/bricks/dart_frog_new/hooks/test/src/route_configuration_utils_test.dart +++ b/bricks/dart_frog_new/hooks/test/src/route_configuration_utils_test.dart @@ -67,8 +67,8 @@ void main() { route: '/', params: [], wildcard: false, - ) - ] + ), + ], }); expect( @@ -96,7 +96,7 @@ void main() { route: '/', params: [], wildcard: false, - ) + ), ], '/': const [ RouteFile( @@ -105,7 +105,7 @@ void main() { route: '/', params: [], wildcard: false, - ) + ), ], '//existing_as_file': const [ RouteFile( @@ -114,7 +114,7 @@ void main() { route: '/existing_as_file', params: [], wildcard: false, - ) + ), ], '//existing_as_dir': const [ RouteFile( @@ -123,7 +123,7 @@ void main() { route: '/', params: [], wildcard: false, - ) + ), ], }); });