Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 299ddad6 authored by Josh Gao's avatar Josh Gao Committed by android-build-merger
Browse files

adb: be more permissive in test_push_error_reporting. am: 79ce3fe7 am: b6e9e5dd

am: dfeb4ae5

Change-Id: I0d608756f56b5ebfce9e273747a9ca6aeb1969a9
parents 22436ab7 dfeb4ae5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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)