| Index: chrome_frame/test/test_with_web_server.cc
|
| diff --git a/chrome_frame/test/test_with_web_server.cc b/chrome_frame/test/test_with_web_server.cc
|
| index 900427e21ad2f22837f979a361fe3851c98250cb..a044b71522d0024fd2824db6ecdd7831fef1e318 100644
|
| --- a/chrome_frame/test/test_with_web_server.cc
|
| +++ b/chrome_frame/test/test_with_web_server.cc
|
| @@ -115,12 +115,12 @@ void ChromeFrameTestWithWebServer::SetUp() {
|
| CFInstance_src_path = chrome_frame_source_path.AppendASCII("CFInstance.js");
|
| CFInstance_path_ = test_file_path_.AppendASCII("CFInstance.js");
|
|
|
| - file_util::CopyFileW(CFInstance_src_path, CFInstance_path_);
|
| + ASSERT_TRUE(file_util::CopyFile(CFInstance_src_path, CFInstance_path_));
|
|
|
| CFInstall_src_path = chrome_frame_source_path.AppendASCII("CFInstall.js");
|
| CFInstall_path_ = test_file_path_.AppendASCII("CFInstall.js");
|
|
|
| - file_util::CopyFileW(CFInstall_src_path, CFInstall_path_);
|
| + ASSERT_TRUE(file_util::CopyFile(CFInstall_src_path, CFInstall_path_));
|
|
|
| server_mock_.ExpectAndServeAnyRequests(CFInvocation(CFInvocation::NONE));
|
| server_mock_.set_expected_result("OK");
|
|
|