aboutsummaryrefslogtreecommitdiff
path: root/src/commands/cloud_command_proxy_unittest.cc
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2016-01-21 17:15:58 -0800
committerVitaly Buka <vitalybuka@google.com>2016-01-22 21:43:25 +0000
commit48a8669ddc2e8d785aad9ad18a5abbf8f1224fde (patch)
treef2e3ebf331594c3164f26e27f583eb77f544f507 /src/commands/cloud_command_proxy_unittest.cc
parent50a147a0d09185e0e0f6913e2b8bc33734a54f3f (diff)
downloadlibweave-48a8669ddc2e8d785aad9ad18a5abbf8f1224fde.tar.gz
Remove domain from weave::Error
We don't filter out errors by domain in libweave. BUG:26071451 Change-Id: I2114450aca1c8ede71cc45f19bd8e71d3464cb73 Reviewed-on: https://weave-review.googlesource.com/2289 Reviewed-by: Alex Vakulenko <avakulenko@google.com>
Diffstat (limited to 'src/commands/cloud_command_proxy_unittest.cc')
-rw-r--r--src/commands/cloud_command_proxy_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cloud_command_proxy_unittest.cc b/src/commands/cloud_command_proxy_unittest.cc
index 0e998ef..013769d 100644
--- a/src/commands/cloud_command_proxy_unittest.cc
+++ b/src/commands/cloud_command_proxy_unittest.cc
@@ -192,7 +192,7 @@ TEST_F(CloudCommandProxyTest, RetryFailed) {
*CreateDictionaryValue("{'status': 'ready'}"), nullptr));
task_runner_.Run();
ErrorPtr error;
- Error::AddTo(&error, FROM_HERE, "TEST", "TEST", "TEST");
+ Error::AddTo(&error, FROM_HERE, "TEST", "TEST");
callback.Run(error->Clone());
task_runner_.Run();
EXPECT_GE(task_runner_.GetClock()->Now() - started,