From f2eacf0e09e03f2c1fb80f9331ce4c1ee8c7d34b Mon Sep 17 00:00:00 2001 From: Jeff Irion Date: Wed, 1 Jul 2020 21:34:18 -0700 Subject: [PATCH] Use better names and comments --- tests/test_adb_manager_async_temp.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/test_adb_manager_async_temp.py b/tests/test_adb_manager_async_temp.py index ea869bb1..316efe9d 100644 --- a/tests/test_adb_manager_async_temp.py +++ b/tests/test_adb_manager_async_temp.py @@ -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")