| Index: runtime/vm/growable_array_test.cc
|
| diff --git a/runtime/vm/growable_array_test.cc b/runtime/vm/growable_array_test.cc
|
| index fedb9c85beac7f27f31e7641c765ad0ffc621f38..4a9782de5291be97099b26e15b2197ac889ae983 100644
|
| --- a/runtime/vm/growable_array_test.cc
|
| +++ b/runtime/vm/growable_array_test.cc
|
| @@ -8,7 +8,7 @@
|
|
|
| namespace dart {
|
|
|
| -template<class GrowableArrayInt, class GrowableArrayInt64>
|
| +template <class GrowableArrayInt, class GrowableArrayInt64>
|
| void TestGrowableArray() {
|
| GrowableArrayInt g;
|
| EXPECT_EQ(0, g.length());
|
| @@ -64,14 +64,12 @@ void TestGrowableArray() {
|
|
|
|
|
| TEST_CASE(GrowableArray) {
|
| - TestGrowableArray<GrowableArray<int>,
|
| - GrowableArray<int64_t> >();
|
| + TestGrowableArray<GrowableArray<int>, GrowableArray<int64_t> >();
|
| }
|
|
|
|
|
| TEST_CASE(MallocGrowableArray) {
|
| - TestGrowableArray<MallocGrowableArray<int>,
|
| - MallocGrowableArray<int64_t> >();
|
| + TestGrowableArray<MallocGrowableArray<int>, MallocGrowableArray<int64_t> >();
|
| }
|
|
|
|
|
|
|