| Index: base/memory/discardable_memory_ashmem_allocator_unittest.cc
|
| diff --git a/base/memory/discardable_memory_ashmem_allocator_unittest.cc b/base/memory/discardable_memory_ashmem_allocator_unittest.cc
|
| index e9f63ba343963d5ecb0b479668db073568c44ac4..e6f2fea428c2ccc31bb332b162808fb865f8a3cd 100644
|
| --- a/base/memory/discardable_memory_ashmem_allocator_unittest.cc
|
| +++ b/base/memory/discardable_memory_ashmem_allocator_unittest.cc
|
| @@ -85,7 +85,7 @@ TEST_F(DiscardableMemoryAshmemAllocatorTest,
|
| scoped_ptr<DiscardableAshmemChunk> memory(allocator.Allocate(kPageSize));
|
| ASSERT_TRUE(memory);
|
| EXPECT_GT(kMaxAllowedAllocationSize, allocator.last_ashmem_region_size());
|
| - ASSERT_TRUE(allocator.last_ashmem_region_size() % kPageSize == 0);
|
| + ASSERT_EQ(allocator.last_ashmem_region_size() % kPageSize, 0u);
|
| }
|
|
|
| TEST_F(DiscardableMemoryAshmemAllocatorTest, LargeAllocation) {
|
|
|