| Index: tests/corelib/src/SortHelper.dart
|
| diff --git a/tests/corelib/src/SortHelper.dart b/tests/corelib/src/SortHelper.dart
|
| index 59314b93ab62251acf282a701efeee61485675cf..4efa33bbc1bedb346f00d44b56807ca2aaf5e66b 100644
|
| --- a/tests/corelib/src/SortHelper.dart
|
| +++ b/tests/corelib/src/SortHelper.dart
|
| @@ -20,7 +20,7 @@ class SortHelper {
|
| print("[$buffer]");
|
| }
|
|
|
| - void isSorted(List a) {
|
| + bool isSorted(List a) {
|
| for (int i = 1; i < a.length; i++) {
|
| if (compareFunction(a[i - 1], a[i]) > 0) {
|
| return false;
|
|
|