Skip to content

Commit e7398f2

Browse files
committed
Format...
1 parent 31c6e87 commit e7398f2

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

test_async/test_device_async.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,7 @@ async def test_pull(self):
140140
"asyncio.open_connection",
141141
return_value=(FakeStreamReader(), FakeStreamWriter()),
142142
), async_patch(
143-
"ppadb.device_async.DeviceAsync.shell",
144-
return_value=["", "IS_FILE"]
143+
"ppadb.device_async.DeviceAsync.shell", return_value=["", "IS_FILE"]
145144
):
146145
with async_patch(
147146
"{}.FakeStreamReader.read".format(__name__),
@@ -164,8 +163,7 @@ async def test_pull_fail(self):
164163
"asyncio.open_connection",
165164
return_value=(FakeStreamReader(), FakeStreamWriter()),
166165
), async_patch(
167-
"ppadb.device_async.DeviceAsync.shell",
168-
return_value=["", "IS_FILE"]
166+
"ppadb.device_async.DeviceAsync.shell", return_value=["", "IS_FILE"]
169167
):
170168
with async_patch(
171169
"{}.FakeStreamReader.read".format(__name__),

0 commit comments

Comments
 (0)