| Index: chrome/browser/images_uitest.cc
|
| diff --git a/chrome/browser/images_uitest.cc b/chrome/browser/images_uitest.cc
|
| index cfe09386c4261e311e2b99ccddcf60a2e59b5feb..0b5a4be3c50225db49ff54eb1e62054a4b854785 100644
|
| --- a/chrome/browser/images_uitest.cc
|
| +++ b/chrome/browser/images_uitest.cc
|
| @@ -9,8 +9,10 @@
|
| class ImagesTest : public UITest {
|
| protected:
|
| ImagesTest() : UITest() {
|
| - launch_arguments_ = test_data_directory_;
|
| - file_util::AppendToPath(&launch_arguments_, L"animated-gifs.html");
|
| + std::wstring path = test_data_directory_;
|
| + file_util::AppendToPath(&path, L"animated-gifs.html");
|
| + launch_arguments_ = CommandLine(L"");
|
| + launch_arguments_.AppendLooseValue(path);
|
| }
|
| };
|
|
|
|
|