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

Unified Diff: third_party/crashpad/crashpad/util/win/exception_handler_server_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/util/win/exception_handler_server_test.cc
diff --git a/third_party/crashpad/crashpad/util/win/exception_handler_server_test.cc b/third_party/crashpad/crashpad/util/win/exception_handler_server_test.cc
index e9f865bef9c1bb595d1bf1dee3054c606e8a7e3c..c1a076b86ba8aab8a1c06bc7d38457a3dc9419d2 100644
--- a/third_party/crashpad/crashpad/util/win/exception_handler_server_test.cc
+++ b/third_party/crashpad/crashpad/util/win/exception_handler_server_test.cc
@@ -203,9 +203,9 @@ TEST_F(ExceptionHandlerServerTest, MultipleConnections) {
WriteWString(handles_2->write.get(), pipe_name());
WriteWString(handles_3->write.get(), pipe_name());
- ASSERT_EQ(L"OK", ReadWString(handles_3->read.get()));
- ASSERT_EQ(L"OK", ReadWString(handles_2->read.get()));
- ASSERT_EQ(L"OK", ReadWString(handles_1->read.get()));
+ ASSERT_EQ(ReadWString(handles_3->read.get()), L"OK");
+ ASSERT_EQ(ReadWString(handles_2->read.get()), L"OK");
+ ASSERT_EQ(ReadWString(handles_1->read.get()), L"OK");
}
}

Powered by Google App Engine
This is Rietveld 408576698