| Index: tools/telemetry/telemetry/unittest_util/system_stub.py
|
| diff --git a/tools/telemetry/telemetry/unittest_util/system_stub.py b/tools/telemetry/telemetry/unittest_util/system_stub.py
|
| index 1794e525370ca76fb47dded64925fb8108a60e56..2d2283e91574637da9db09fb61e129ee929d3388 100644
|
| --- a/tools/telemetry/telemetry/unittest_util/system_stub.py
|
| +++ b/tools/telemetry/telemetry/unittest_util/system_stub.py
|
| @@ -182,7 +182,6 @@
|
| self.local_file_hashes = {}
|
| self.local_hash_files = {}
|
| self.permission_level = CloudStorageModuleStub.INTERNAL_PERMISSION
|
| - self.downloaded_files = []
|
|
|
| def SetPermissionLevelForTesting(self, permission_level):
|
| self.permission_level = permission_level
|
| @@ -261,7 +260,6 @@
|
| local_hash = self.local_file_hashes[local_path]
|
| if only_if_changed and remote_hash == local_hash:
|
| return False
|
| - self.downloaded_files.append(remote_path)
|
| self.local_file_hashes[local_path] = remote_hash
|
| self.local_hash_files[local_path + '.sha1'] = remote_hash
|
| return remote_hash
|
|
|