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