@@ -33,7 +33,7 @@ import './step/the_app_is_running.dart';
3333
3434void main() {
3535 group('Testing feature', () {
36- testWidgets('Testing scenario', (WidgetTester tester) async {
36+ testWidgets('Testing scenario', (tester) async {
3737 await theAppIsRunning(tester);
3838 });
3939 });
@@ -54,7 +54,7 @@ import './step/i_see_icon.dart';
5454
5555void main() {
5656 group('Testing feature', () {
57- testWidgets('Testing scenario', (WidgetTester tester) async {
57+ testWidgets('Testing scenario', (tester) async {
5858 await theAppIsRunning(tester);
5959 await iSeeText(tester, 'nice param');
6060 await iSeeIcon(tester, Icons.add);
@@ -76,15 +76,15 @@ import './step/the_app_is_running.dart';
7676
7777void main() {
7878 group('First testing feature', () {
79- testWidgets('First testing scenario', (WidgetTester tester) async {
79+ testWidgets('First testing scenario', (tester) async {
8080 await theAppIsRunning(tester);
8181 });
8282 });
8383 group('Second testing feature', () {
84- testWidgets('First testing scenario', (WidgetTester tester) async {
84+ testWidgets('First testing scenario', (tester) async {
8585 await theAppIsRunning(tester);
8686 });
87- testWidgets('Second testing scenario', (WidgetTester tester) async {
87+ testWidgets('Second testing scenario', (tester) async {
8888 await theAppIsRunning(tester);
8989 });
9090 });
0 commit comments