summaryrefslogtreecommitdiffstats
path: root/tools/json_schema_compiler/test/error_generation_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/json_schema_compiler/test/error_generation_unittest.cc')
-rw-r--r--tools/json_schema_compiler/test/error_generation_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/json_schema_compiler/test/error_generation_unittest.cc b/tools/json_schema_compiler/test/error_generation_unittest.cc
index f5a24fa..9515f07 100644
--- a/tools/json_schema_compiler/test/error_generation_unittest.cc
+++ b/tools/json_schema_compiler/test/error_generation_unittest.cc
@@ -24,7 +24,7 @@ base::string16 GetPopulateError(const base::Value& value) {
testing::AssertionResult EqualsUtf16(const std::string& expected,
const base::string16& actual) {
- if (ASCIIToUTF16(expected) != actual)
+ if (base::ASCIIToUTF16(expected) != actual)
return testing::AssertionFailure() << expected << " != " << actual;
return testing::AssertionSuccess();
}