Skip to content

Commit 52085c8

Browse files
committed
Fix tests
1 parent 1acc875 commit 52085c8

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

test/background_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ void main() {
2626
await theServerAlwaysReturnErrors();
2727
});
2828
group('Testing feature', () {
29-
testWidgets('Testing scenario', (WidgetTester tester) async {
29+
testWidgets('Testing scenario', (tester) async {
3030
await theAppIsRunning(tester);
3131
});
3232
});

test/feature_test.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import './step/the_app_is_running.dart';
3333
3434
void 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
5555
void 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
7777
void 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
});

test/lines_before_feature_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import './step/the_app_is_running.dart';
2525
2626
void main() {
2727
group('Testing feature', () {
28-
testWidgets('Testing scenario', (WidgetTester tester) async {
28+
testWidgets('Testing scenario', (tester) async {
2929
await theAppIsRunning(tester);
3030
});
3131
});

0 commit comments

Comments
 (0)