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

Unified Diff: third_party/crashpad/crashpad/client/prune_crash_reports_test.cc

Issue 2804713002: Update Crashpad to b4095401639ebe2ad33169e5c1d994065cbff1b8 (Closed)
Patch Set: Created 3 years, 8 months 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
Index: third_party/crashpad/crashpad/client/prune_crash_reports_test.cc
diff --git a/third_party/crashpad/crashpad/client/prune_crash_reports_test.cc b/third_party/crashpad/crashpad/client/prune_crash_reports_test.cc
index 7772d20d79515ccd8c2f0a5db5b20ef087be2542..14eb2e0b3cd5ef0945fb4e2af31620188dba0a83 100644
--- a/third_party/crashpad/crashpad/client/prune_crash_reports_test.cc
+++ b/third_party/crashpad/crashpad/client/prune_crash_reports_test.cc
@@ -185,9 +185,9 @@ TEST(PruneCrashReports, BinaryCondition) {
auto rhs = new StaticCondition(test.rhs_value);
BinaryPruneCondition condition(test.op, lhs, rhs);
CrashReportDatabase::Report report;
- EXPECT_EQ(test.cond_result, condition.ShouldPruneReport(report));
- EXPECT_EQ(test.lhs_executed, lhs->did_execute());
- EXPECT_EQ(test.rhs_executed, rhs->did_execute());
+ EXPECT_EQ(condition.ShouldPruneReport(report), test.cond_result);
+ EXPECT_EQ(lhs->did_execute(), test.lhs_executed);
+ EXPECT_EQ(rhs->did_execute(), test.rhs_executed);
}
}
« no previous file with comments | « third_party/crashpad/crashpad/client/crashpad_info.h ('k') | third_party/crashpad/crashpad/client/settings_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698