Commit 1834d999 authored by nednguyen@google.com's avatar nednguyen@google.com

Update trace_event_unittest to use ASSERT_LE rather than ASSERT_LT.

BUG=396403

Review URL: https://codereview.chromium.org/412033003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285472 0039d316-1c4b-4281-b951-d872f2087c98
parent 2517b30f
......@@ -2464,8 +2464,8 @@ TEST_F(TraceEventTestFixture, MAYBE_TraceBufferVectorReportFull) {
EXPECT_TRUE(trace_parsed_.GetDictionary(trace_parsed_.GetSize() - 1,
&last_trace_event));
EXPECT_TRUE(last_trace_event->GetDouble("ts", &last_trace_event_timestamp));
EXPECT_LT(last_trace_event_timestamp, buffer_limit_reached_timestamp);
EXPECT_LT(buffer_limit_reached_timestamp,
EXPECT_LE(last_trace_event_timestamp, buffer_limit_reached_timestamp);
EXPECT_LE(buffer_limit_reached_timestamp,
trace_log->OffsetNow().ToInternalValue());
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment