Skip to content

Commit

Permalink
Use better names and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffLIrion committed Jul 2, 2020
1 parent 28f4ab1 commit f2eacf0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/test_adb_manager_async_temp.py
Expand Up @@ -11,10 +11,14 @@


class TestAsyncClientDevice(unittest.TestCase):
"""Test"""
"""Test the ``ClientAsync`` and ``DeviceAsync`` classes defined in ``adb_manager_async.py``.
This file can be removed once true async support for using an ADB server is available.
"""

@awaiter
async def test_stuff(self):
async def test_async_client_device(self):
with patch("androidtv.adb_manager.adb_manager_async.Client", patchers.ClientFakeSuccess):
client = ClientAsync("host", "port")

Expand Down

0 comments on commit f2eacf0

Please sign in to comment.