Index: base/file_path_unittest.cc |
diff --git a/base/file_path_unittest.cc b/base/file_path_unittest.cc |
index 9890e8062729653196baf0ed42b512578e25322d..31b4d7864081b59801e5290675fec364fead1b9f 100644 |
--- a/base/file_path_unittest.cc |
+++ b/base/file_path_unittest.cc |
@@ -1074,7 +1074,7 @@ TEST_F(FilePathTest, FromUTF8Unsafe_And_AsUTF8Unsafe) { |
} |
#if defined(FILE_PATH_USES_WIN_SEPARATORS) |
-TEST_F(FilePathTest, NormalizeWindowsPathSeparators) { |
+TEST_F(FilePathTest, NormalizePathSeparators) { |
const struct UnaryTestData cases[] = { |
{ FPL("foo/bar"), FPL("foo\\bar") }, |
{ FPL("foo/bar\\betz"), FPL("foo\\bar\\betz") }, |
@@ -1110,7 +1110,7 @@ TEST_F(FilePathTest, NormalizeWindowsPathSeparators) { |
}; |
for (size_t i = 0; i < arraysize(cases); ++i) { |
FilePath input(cases[i].input); |
- FilePath observed = input.NormalizeWindowsPathSeparators(); |
+ FilePath observed = input.NormalizePathSeparators(); |
EXPECT_EQ(FilePath::StringType(cases[i].expected), observed.value()) << |
"i: " << i << ", input: " << input.value(); |
} |