cli: Fix import paths to use cli/cros.
As part of the Brillo entry point, we're restructuring chromite/cros to
chromite/cli/cros instead. This CL just fixes module import paths to
point to the new location to make the restructuring functional.
See brbug.com/557 for more info.
BUG=brillo:557
TEST=cbuildbot/run_tests
Change-Id: I70c783f40e207090c5babf7ac149543613c8817e
Reviewed-on: https://chromium-review.googlesource.com/261183
Reviewed-by: David Pursell <dpursell@chromium.org>
Commit-Queue: David Pursell <dpursell@chromium.org>
Trybot-Ready: David Pursell <dpursell@chromium.org>
Tested-by: David Pursell <dpursell@chromium.org>
diff --git a/cli/command_unittest.py b/cli/command_unittest.py
index be8b15d..df526bf 100644
--- a/cli/command_unittest.py
+++ b/cli/command_unittest.py
@@ -105,7 +105,7 @@
"""Tests import commands correctly."""
fake_module = 'cros_command_test'
fake_command_file = '%s.py' % fake_module
- module_path = ('chromite', 'cros', 'commands', fake_module)
+ module_path = ('chromite', 'cli', 'cros', fake_module)
self.PatchObject(command, '_FindModules', return_value=[fake_command_file])
# The code doesn't use the return value, so stub it out lazy-like.