| Index: pkg/analysis_services/test/correction/fix_test.dart
|
| diff --git a/pkg/analysis_services/test/correction/fix_test.dart b/pkg/analysis_services/test/correction/fix_test.dart
|
| index 476f3196e9faf4d0ca7486f2eb8a1af62db059f5..4a755ab97dab6a9af3c6d571815d4332b71e87af 100644
|
| --- a/pkg/analysis_services/test/correction/fix_test.dart
|
| +++ b/pkg/analysis_services/test/correction/fix_test.dart
|
| @@ -41,9 +41,7 @@ class FixProcessorTest extends AbstractSingleUnitTest {
|
| // apply to "file"
|
| List<FileEdit> fileEdits = change.fileEdits;
|
| expect(fileEdits, hasLength(1));
|
| - // TODO(paulberry): should the code under test be responsible for sorting
|
| - // the edits?
|
| - resultCode = Edit.applySorted(testCode, change.fileEdits[0].edits);
|
| + resultCode = Edit.applySequence(testCode, change.fileEdits[0].edits);
|
| // verify
|
| expect(resultCode, expected);
|
| }
|
|
|