Index: third_party/crashpad/crashpad/test/multiprocess_exec_test.cc |
diff --git a/third_party/crashpad/crashpad/test/multiprocess_exec_test.cc b/third_party/crashpad/crashpad/test/multiprocess_exec_test.cc |
index 3e958aa8cbf8a38e13e572c9ff47cfd91b3e3119..f35519a0f0f908ec61e3b4d5bc5917e1319cf9b6 100644 |
--- a/third_party/crashpad/crashpad/test/multiprocess_exec_test.cc |
+++ b/third_party/crashpad/crashpad/test/multiprocess_exec_test.cc |
@@ -18,7 +18,7 @@ |
#include "base/strings/utf_string_conversions.h" |
#include "build/build_config.h" |
#include "gtest/gtest.h" |
-#include "test/paths.h" |
+#include "test/test_paths.h" |
#include "util/file/file_io.h" |
namespace crashpad { |
@@ -40,7 +40,7 @@ class TestMultiprocessExec final : public MultiprocessExec { |
ASSERT_TRUE(LoggingWriteFile(WritePipeHandle(), &c, 1)); |
ASSERT_TRUE(LoggingReadFileExactly(ReadPipeHandle(), &c, 1)); |
- EXPECT_EQ('Z', c); |
+ EXPECT_EQ(c, 'Z'); |
} |
DISALLOW_COPY_AND_ASSIGN(TestMultiprocessExec); |
@@ -48,7 +48,7 @@ class TestMultiprocessExec final : public MultiprocessExec { |
TEST(MultiprocessExec, MultiprocessExec) { |
TestMultiprocessExec multiprocess_exec; |
- base::FilePath test_executable = Paths::Executable(); |
+ base::FilePath test_executable = TestPaths::Executable(); |
#if defined(OS_POSIX) |
std::string child_test_executable = test_executable.value(); |
#elif defined(OS_WIN) |