| Index: runtime/vm/growable_array_test.cc
|
| diff --git a/runtime/vm/growable_array_test.cc b/runtime/vm/growable_array_test.cc
|
| index 4a9782de5291be97099b26e15b2197ac889ae983..75ec5514959ae0edc6386e2e4ac75de2da023b79 100644
|
| --- a/runtime/vm/growable_array_test.cc
|
| +++ b/runtime/vm/growable_array_test.cc
|
| @@ -2,8 +2,8 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -#include "platform/assert.h"
|
| #include "vm/growable_array.h"
|
| +#include "platform/assert.h"
|
| #include "vm/unit_test.h"
|
|
|
| namespace dart {
|
| @@ -62,17 +62,14 @@ void TestGrowableArray() {
|
| EXPECT(h.is_empty());
|
| }
|
|
|
| -
|
| TEST_CASE(GrowableArray) {
|
| TestGrowableArray<GrowableArray<int>, GrowableArray<int64_t> >();
|
| }
|
|
|
| -
|
| TEST_CASE(MallocGrowableArray) {
|
| TestGrowableArray<MallocGrowableArray<int>, MallocGrowableArray<int64_t> >();
|
| }
|
|
|
| -
|
| static int greatestFirst(const int* a, const int* b) {
|
| if (*a > *b) {
|
| return -1;
|
| @@ -94,7 +91,6 @@ TEST_CASE(GrowableArraySort) {
|
| EXPECT_EQ(4, g.Last());
|
| }
|
|
|
| -
|
| TEST_CASE(GrowableHandlePtr) {
|
| Zone* zone = Thread::Current()->zone();
|
| GrowableHandlePtrArray<const String> test1(zone, 1);
|
|
|