Skip to content

Commit e2f9a9f

Browse files
committed
Formatted
1 parent 7a54da7 commit e2f9a9f

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

test/test_device.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,14 +216,18 @@ def working_dir():
216216

217217

218218
def test_pull_file(populated_device, working_dir):
219-
populated_device.pull("/data/local/tmp/toplevel/test1.txt", working_dir / "test1.txt")
219+
populated_device.pull(
220+
"/data/local/tmp/toplevel/test1.txt", working_dir / "test1.txt"
221+
)
220222
dest_path = working_dir / "test1.txt"
221223
assert dest_path.is_file()
222224
assert dest_path.read_text() == "toplevel/test1.txt"
223225

224226

225227
def test_pull_dir(populated_device, working_dir):
226-
populated_device.pull("/data/local/tmp/toplevel/subdir1/subdir2", working_dir / "subdir2")
228+
populated_device.pull(
229+
"/data/local/tmp/toplevel/subdir1/subdir2", working_dir / "subdir2"
230+
)
227231
dest_path = working_dir / "subdir2"
228232
filepath1 = dest_path / "test5.txt"
229233
filepath2 = dest_path / "test6.txt"

0 commit comments

Comments
 (0)