Index: tools/telemetry/telemetry/unittest/system_stub.py |
diff --git a/tools/telemetry/telemetry/unittest/system_stub.py b/tools/telemetry/telemetry/unittest/system_stub.py |
index 94d8597fdca344859ce10ce5885e89d4885f684c..9c459e53b603a8e2c811275571e5e523de496ea5 100644 |
--- a/tools/telemetry/telemetry/unittest/system_stub.py |
+++ b/tools/telemetry/telemetry/unittest/system_stub.py |
@@ -123,8 +123,14 @@ class AdbCommandsModuleStub(object): |
class CloudStorageModuleStub(object): |
- INTERNAL_BUCKET = None |
- PUBLIC_BUCKET = None |
+ PUBLIC_BUCKET = 'chromium-telemetry' |
+ PARTNER_BUCKET = 'chrome-partner-telemetry' |
+ INTERNAL_BUCKET = 'chrome-telemetry' |
+ BUCKET_ALIASES = { |
+ 'public': PUBLIC_BUCKET, |
+ 'partner': PARTNER_BUCKET, |
+ 'internal': INTERNAL_BUCKET, |
+ } |
class CloudStorageError(Exception): |
pass |