aboutsummaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2016-02-22 17:18:49 -0800
committerVitaly Buka <vitalybuka@google.com>2016-02-23 20:12:41 +0000
commit012cd9842559fd985d70a59919c382d71f15c5ac (patch)
tree2217469c4f695a524f71e8bc60a71d75f0656908 /src/commands
parentc6d99bb82ea9ceef4cf65a5b0c755bb1f119b639 (diff)
downloadlibweave-012cd9842559fd985d70a59919c382d71f15c5ac.tar.gz
Move mock_component_manager.h into test/ dir
Change-Id: I4c3f95174a7fa83d9fc04fc75a89e4f908bb615a Reviewed-on: https://weave-review.googlesource.com/2707 Reviewed-by: Alex Vakulenko <avakulenko@google.com>
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/cloud_command_proxy_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/cloud_command_proxy_unittest.cc b/src/commands/cloud_command_proxy_unittest.cc
index 0de67fe..e0bd4fc 100644
--- a/src/commands/cloud_command_proxy_unittest.cc
+++ b/src/commands/cloud_command_proxy_unittest.cc
@@ -14,7 +14,7 @@
#include <weave/test/unittest_utils.h>
#include "src/commands/command_instance.h"
-#include "src/mock_component_manager.h"
+#include "src/test/mock_component_manager.h"
using testing::_;
using testing::AnyNumber;
@@ -141,7 +141,7 @@ class CloudCommandProxyTest : public ::testing::Test {
ComponentManager::UpdateID current_state_update_id_{0};
base::CallbackList<void(ComponentManager::UpdateID)> callbacks_;
testing::StrictMock<MockCloudCommandUpdateInterface> cloud_updater_;
- testing::StrictMock<MockComponentManager> component_manager_;
+ testing::StrictMock<test::MockComponentManager> component_manager_;
testing::StrictMock<provider::test::FakeTaskRunner> task_runner_;
std::queue<base::Closure> task_queue_;
std::unique_ptr<CommandInstance> command_instance_;