| Index: pkg/analysis_services/test/correction/assist_test.dart
|
| diff --git a/pkg/analysis_services/test/correction/assist_test.dart b/pkg/analysis_services/test/correction/assist_test.dart
|
| index 478807fd36582c80f2d455ac40e1fbcb0775ef1a..06f0738f613b3e828f75d9de40483ffefdc63f1b 100644
|
| --- a/pkg/analysis_services/test/correction/assist_test.dart
|
| +++ b/pkg/analysis_services/test/correction/assist_test.dart
|
| @@ -43,9 +43,7 @@ class AssistProcessorTest 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);
|
| }
|
|
|