| Index: pkg/analysis_server/test/index/b_plus_tree_test.dart
|
| diff --git a/pkg/analysis_server/test/index/b_plus_tree_test.dart b/pkg/analysis_server/test/index/b_plus_tree_test.dart
|
| index 9abb899477a44bccb89d69e5a0adf281e08416bd..bb8ff336977dd84faef8bc2c458d4e9cb7e07830 100644
|
| --- a/pkg/analysis_server/test/index/b_plus_tree_test.dart
|
| +++ b/pkg/analysis_server/test/index/b_plus_tree_test.dart
|
| @@ -682,5 +682,5 @@ INode {
|
|
|
| class _TestBTree<K, V> extends BPlusTree<K, V, int> {
|
| _TestBTree(int maxIndexKeys, int maxLeafKeys, Comparator<K> comparator) :
|
| - super(maxIndexKeys, maxLeafKeys, comparator, new MemoryNodeManager());
|
| + super(comparator, new MemoryNodeManager(maxIndexKeys, maxLeafKeys));
|
| }
|
|
|