diff options
Diffstat (limited to 'base/test')
-rw-r--r-- | base/test/perf_test_suite.h | 2 | ||||
-rw-r--r-- | base/test/test_suite.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/base/test/perf_test_suite.h b/base/test/perf_test_suite.h index 7393544..eed3cfc 100644 --- a/base/test/perf_test_suite.h +++ b/base/test/perf_test_suite.h @@ -24,7 +24,7 @@ class PerfTestSuite : public TestSuite { // Initialize the perf timer log FilePath log_path; std::wstring log_file = - CommandLine::ForCurrentProcess()->GetSwitchValue(L"log-file"); + CommandLine::ForCurrentProcess()->GetSwitchValue("log-file"); if (log_file.empty()) { FilePath exe; PathService::Get(base::FILE_EXE, &exe); diff --git a/base/test/test_suite.h b/base/test/test_suite.h index 863721a..5fd1acc 100644 --- a/base/test/test_suite.h +++ b/base/test/test_suite.h @@ -210,7 +210,7 @@ class TestSuite { // In some cases, we do not want to see standard error dialogs. if (!IsDebuggerPresent() && - !CommandLine::ForCurrentProcess()->HasSwitch(L"show-error-dialogs")) { + !CommandLine::ForCurrentProcess()->HasSwitch("show-error-dialogs")) { SuppressErrorDialogs(); #if !defined(PURIFY) // When the code in this file moved around, bug 6436 resurfaced. |