| Index: courgette/third_party/paged_array_unittest.cc
|
| diff --git a/courgette/third_party/paged_array_unittest.cc b/courgette/third_party/paged_array_unittest.cc
|
| index 9736ca0e208fd2b5894e6716515fda3d3cdc1f0d..f65d68683bca0a69f2d50392faa66c108d643281 100644
|
| --- a/courgette/third_party/paged_array_unittest.cc
|
| +++ b/courgette/third_party/paged_array_unittest.cc
|
| @@ -17,14 +17,14 @@ class PagedArrayTest : public testing::Test {
|
| TEST_F(PagedArrayTest, TestManyAllocationsDestructorFree) {
|
| for (int i = 0; i < kIterations; ++i) {
|
| courgette::PagedArray<int> a;
|
| - EXPECT_EQ(true, a.Allocate(kSize));
|
| + EXPECT_TRUE(a.Allocate(kSize));
|
| }
|
| }
|
|
|
| TEST_F(PagedArrayTest, TestManyAllocationsManualFree) {
|
| courgette::PagedArray<int> a;
|
| for (int i = 0; i < kIterations; ++i) {
|
| - EXPECT_EQ(true, a.Allocate(kSize));
|
| + EXPECT_TRUE(a.Allocate(kSize));
|
| a.clear();
|
| }
|
| }
|
|
|