| Index: runtime/vm/fixed_cache_test.cc
|
| diff --git a/runtime/vm/fixed_cache_test.cc b/runtime/vm/fixed_cache_test.cc
|
| index b27202890ff1b0368b4003b138ee1809928ea9d4..849c4fbc303628f9b4398c5c35bf4ffcf8066a83 100644
|
| --- a/runtime/vm/fixed_cache_test.cc
|
| +++ b/runtime/vm/fixed_cache_test.cc
|
| @@ -2,9 +2,9 @@
|
| // 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 "vm/fixed_cache.h"
|
| #include <string.h>
|
| #include "platform/assert.h"
|
| -#include "vm/fixed_cache.h"
|
| #include "vm/unit_test.h"
|
|
|
| namespace dart {
|
| @@ -18,7 +18,6 @@ UNIT_TEST_CASE(FixedCacheEmpty) {
|
| EXPECT(cache.Lookup(0) == NULL);
|
| }
|
|
|
| -
|
| UNIT_TEST_CASE(FixedCacheHalfFull) {
|
| FixedCache<int, const char*, 8> cache;
|
| // Insert at end.
|
| @@ -42,7 +41,6 @@ UNIT_TEST_CASE(FixedCacheHalfFull) {
|
| EXPECT(cache.Lookup(50) == NULL);
|
| }
|
|
|
| -
|
| struct Resource {
|
| Resource() : id(0) { copies++; }
|
| explicit Resource(int id_) : id(id_) { copies++; }
|
|
|