| 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);
|
| }
|
| }
|
|
|
|
|