summaryrefslogtreecommitdiffstats
path: root/base/file_util_unittest.cc
diff options
context:
space:
mode:
authortkent@chromium.org <tkent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-15 05:00:25 +0000
committertkent@chromium.org <tkent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-15 05:00:25 +0000
commit2c8088a4452c2c204237ba9f2f3706e7eeaaf35b (patch)
treecc21ba5595d16b4b441206240af0606fe7fffb18 /base/file_util_unittest.cc
parent1c8a50abea168e3ff3a3346387ab04936c4a3180 (diff)
downloadchromium_src-2c8088a4452c2c204237ba9f2f3706e7eeaaf35b.zip
chromium_src-2c8088a4452c2c204237ba9f2f3706e7eeaaf35b.tar.gz
chromium_src-2c8088a4452c2c204237ba9f2f3706e7eeaaf35b.tar.bz2
Remove file_util::TrimTrailingSeparators(), which is deprecated and
doesn't work well for Windows root drives. BUG=24722 TEST=existing tests are enough. Review URL: http://codereview.chromium.org/271086 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29093 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util_unittest.cc')
-rw-r--r--base/file_util_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/file_util_unittest.cc b/base/file_util_unittest.cc
index cde98a0..40a4163 100644
--- a/base/file_util_unittest.cc
+++ b/base/file_util_unittest.cc
@@ -297,7 +297,7 @@ static const struct dir_case {
{L"C:\\WINDOWS\\system32\\\\", L"C:\\WINDOWS\\system32"},
{L"C:\\WINDOWS\\system32", L"C:\\WINDOWS"},
{L"C:\\WINDOWS\\system32.\\", L"C:\\WINDOWS\\system32."},
- {L"C:\\", L"C:"},
+ {L"C:\\", L"C:\\"},
#elif defined(OS_POSIX)
{L"/foo/bar/gdi32.dll", L"/foo/bar"},
{L"/foo/bar/not_exist_thx_1138", L"/foo/bar"},