| Index: net/ftp/ftp_directory_listing_parser_ls_unittest.cc
|
| diff --git a/net/ftp/ftp_directory_listing_parser_ls_unittest.cc b/net/ftp/ftp_directory_listing_parser_ls_unittest.cc
|
| index c67c9283a949122d9fc9e863b9fa33c9b6e04475..44c3eb612cddd3683d1569e19bad7b276d199402 100644
|
| --- a/net/ftp/ftp_directory_listing_parser_ls_unittest.cc
|
| +++ b/net/ftp/ftp_directory_listing_parser_ls_unittest.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/format_macros.h"
|
| #include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "net/ftp/ftp_directory_listing_parser_ls.h"
|
|
|
| namespace {
|
| @@ -77,7 +78,8 @@ TEST_F(FtpDirectoryListingParserLsTest, Good) {
|
| 2006, 7, 17, 0, 0 },
|
| };
|
| for (size_t i = 0; i < arraysize(good_cases); i++) {
|
| - SCOPED_TRACE(StringPrintf("Test[%" PRIuS "]: %s", i, good_cases[i].input));
|
| + SCOPED_TRACE(base::StringPrintf("Test[%" PRIuS "]: %s", i,
|
| + good_cases[i].input));
|
|
|
| net::FtpDirectoryListingParserLs parser(mock_current_time);
|
| RunSingleLineTestCase(&parser, good_cases[i]);
|
|
|