diff options
Diffstat (limited to 'sandbox')
-rw-r--r-- | sandbox/win/src/process_policy_test.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sandbox/win/src/process_policy_test.cc b/sandbox/win/src/process_policy_test.cc index 28d5ac2..779cd15 100644 --- a/sandbox/win/src/process_policy_test.cc +++ b/sandbox/win/src/process_policy_test.cc @@ -416,7 +416,8 @@ TEST(ProcessPolicyTest, CreateProcessAW) { // Tests that the broker correctly handles a process crashing within the job. TEST(ProcessPolicyTest, CreateProcessCrashy) { TestRunner runner; - EXPECT_EQ(STATUS_BREAKPOINT, runner.RunTest(L"Process_Crash")); + EXPECT_EQ(static_cast<int>(STATUS_BREAKPOINT), + runner.RunTest(L"Process_Crash")); } TEST(ProcessPolicyTest, OpenToken) { |