adb: be more permissive in test_push_error_reporting.
am: 79ce3fe7db
Change-Id: I1239b5af85edca9ae6fa1a38f755b5707bbc614b
This commit is contained in:
commit
b6e9e5ddde
1 changed files with 2 additions and 1 deletions
|
@ -890,7 +890,8 @@ class FileOperationsTest(DeviceTest):
|
|||
except subprocess.CalledProcessError as e:
|
||||
output = e.output
|
||||
|
||||
self.assertIn('Permission denied', output)
|
||||
self.assertTrue('Permission denied' in output or
|
||||
'Read-only file system' in output)
|
||||
|
||||
def _test_pull(self, remote_file, checksum):
|
||||
tmp_write = tempfile.NamedTemporaryFile(mode='wb', delete=False)
|
||||
|
|
Loading…
Reference in a new issue