summaryrefslogtreecommitdiff
path: root/testrunner.cc
diff options
context:
space:
mode:
Diffstat (limited to 'testrunner.cc')
-rw-r--r--testrunner.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/testrunner.cc b/testrunner.cc
index d05703d..39d33ee 100644
--- a/testrunner.cc
+++ b/testrunner.cc
@@ -16,13 +16,13 @@
#include <base/at_exit.h>
#include <base/command_line.h>
-#include <chromeos/syslog_logging.h>
+#include <brillo/syslog_logging.h>
#include <gtest/gtest.h>
int main(int argc, char** argv) {
base::AtExitManager exit_manager;
base::CommandLine::Init(argc, argv);
- chromeos::InitLog(chromeos::kLogToStderr);
+ brillo::InitLog(brillo::kLogToStderr);
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}