Skip to content

Commit

Permalink
fix: resolve linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JordyHers committed Jun 30, 2023
1 parent 996b4c9 commit cafa7b5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion test/categories/badges_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ void main() {
AnyLogoTest.testException(tester);
});

testWidgets('Verify the last item displayed is the same as the last in the list', (WidgetTester tester) async {
testWidgets(
'Verify the last item displayed is the same as the last in the list',
(WidgetTester tester) async {
await tester.pumpWidget(PumpWidget.badges);
AnyLogoTest.testDisplayedLogos(tester, AnyLogo.badges.values);
});
Expand Down
4 changes: 3 additions & 1 deletion test/categories/crypto_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ void main() {
AnyLogoTest.testException(tester);
});

testWidgets('Verify the last item displayed is the same as the last in the list', (WidgetTester tester) async {
testWidgets(
'Verify the last item displayed is the same as the last in the list',
(WidgetTester tester) async {
await tester.pumpWidget(PumpWidget.crypto);
AnyLogoTest.testDisplayedLogos(tester, AnyLogo.crypto.values);
});
Expand Down

0 comments on commit cafa7b5

Please sign in to comment.