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

Commit 0f871e82 authored by Josh Gao's avatar Josh Gao Committed by android-build-merger
Browse files

Merge "adb: make the test_pull_dir test actually test something." am: f31aba9e

am: e0dcc751

* commit 'e0dcc751':
  adb: make the test_pull_dir test actually test something.
parents 12debfc4 e0dcc751
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -819,7 +819,10 @@ class FileOperationsTest(DeviceTest):
            self.device.pull(remote=self.DEVICE_TEMP_DIR, local=host_dir)

            for temp_file in temp_files:
                host_path = os.path.join(host_dir, temp_file.base_name)
                host_path = os.path.join(
                    host_dir, posixpath.basename(self.DEVICE_TEMP_DIR),
                    temp_file.base_name)
                self._verify_local(temp_file.checksum, host_path)

            self.device.shell(['rm', '-rf', self.DEVICE_TEMP_DIR])
        finally: