summaryrefslogtreecommitdiffstats
path: root/courgette/third_party/paged_array_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'courgette/third_party/paged_array_unittest.cc')
-rw-r--r--courgette/third_party/paged_array_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/courgette/third_party/paged_array_unittest.cc b/courgette/third_party/paged_array_unittest.cc
index 9736ca0..f65d686 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();
}
}