| Index: runtime/vm/heap_profiler_test.cc
|
| diff --git a/runtime/vm/heap_profiler_test.cc b/runtime/vm/heap_profiler_test.cc
|
| index e474a9064d024994ab5fcb8d9770f46be78ade6e..c7cf66effafdd9a58732d188d343326b2594d983 100644
|
| --- a/runtime/vm/heap_profiler_test.cc
|
| +++ b/runtime/vm/heap_profiler_test.cc
|
| @@ -97,8 +97,8 @@ TEST_CASE(HeapProfileEmpty) {
|
| uint64_t hi = Read32(&array, &i);
|
| uint64_t lo = Read32(&array, &i);
|
| uint64_t time = (hi << 32) | lo;
|
| - EXPECT_GE(before, time);
|
| - EXPECT_LE(after, time);
|
| + EXPECT_LE(before, time);
|
| + EXPECT_GE(after, time);
|
| while (i != array.length()) {
|
| // Check tag
|
| uint8_t tag = Read8(&array, &i);
|
|
|