| Index: pkg/analyzer/test/generated/utilities_test.dart
|
| diff --git a/pkg/analyzer/test/generated/utilities_test.dart b/pkg/analyzer/test/generated/utilities_test.dart
|
| index 2adbb5921f7192dd0a831d6a69f57076a89973ad..5be35ea3b3fefbd06580fd8606eea58a450171f4 100644
|
| --- a/pkg/analyzer/test/generated/utilities_test.dart
|
| +++ b/pkg/analyzer/test/generated/utilities_test.dart
|
| @@ -2364,12 +2364,8 @@ class DirectedGraphTest extends EngineTestCase {
|
| List<List<DirectedGraphTest_Node>> topologicalSort =
|
| graph.computeTopologicalSort();
|
| EngineTestCase.assertSizeOfList(2, topologicalSort);
|
| - EngineTestCase.assertContains(
|
| - new List.from(topologicalSort[0]),
|
| - [node3, node4]);
|
| - EngineTestCase.assertContains(
|
| - new List.from(topologicalSort[1]),
|
| - [node1, node2]);
|
| + EngineTestCase.assertContains(topologicalSort[0], [node3, node4]);
|
| + EngineTestCase.assertContains(topologicalSort[1], [node1, node2]);
|
| }
|
| }
|
|
|
|
|