Skip to content

Commit

Permalink
remove redundant comment
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Sep 20, 2023
1 parent 3bbc579 commit 9dd4827
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ public Object[] listDartTests() {
// runDartTest is 10 characters.
// Opening "[" and closing "]" are 2 characters.
// This gives 192 - 16 - 10 - 2 = 164 characters for the Dart test name.
// Cropping the test name must be done on Dart side, otherwise
for (int i = 0; i < dartTestCaseNames.length; i++) {
final int limit = 164;
if (dartTestCaseNames[i].toString().length() > limit) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import 'package:flutter/material.dart';
import 'common.dart';

String _generateString(int length) {
// not random
return 'a' * length;
}

Expand Down

0 comments on commit 9dd4827

Please sign in to comment.