Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1497)

Unified Diff: content/renderer/render_view_browsertest.cc

Issue 2558633008: Fix condition in test. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_browsertest.cc
diff --git a/content/renderer/render_view_browsertest.cc b/content/renderer/render_view_browsertest.cc
index 4a478961f960ef2bd507f46d17b30823c02a8a5a..88d711e70f38ca15a54d33fa8e2bf033cd27423f 100644
--- a/content/renderer/render_view_browsertest.cc
+++ b/content/renderer/render_view_browsertest.cc
@@ -1993,7 +1993,7 @@ TEST_F(RenderViewImplTest, RendererNavigationStartTransmittedToBrowser) {
ProcessAndReadIPC<FrameHostMsg_DidStartProvisionalLoad>();
base::TimeTicks transmitted_start = std::get<1>(host_nav_params);
EXPECT_FALSE(transmitted_start.is_null());
- EXPECT_LT(lower_bound_navigation_start, transmitted_start);
+ EXPECT_LE(lower_bound_navigation_start, transmitted_start);
}
// Checks that a browser-initiated navigation in an initial document that was
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698