Skip to content

Commit

Permalink
Merge e463d30 into f3254d0
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffLIrion committed Oct 23, 2019
2 parents f3254d0 + e463d30 commit 3da4046
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion androidtv/adb_manager.py
Expand Up @@ -13,7 +13,7 @@

from adb_shell.adb_device import AdbDevice
from adb_shell.auth.sign_pythonrsa import PythonRSASigner
from adb_messenger.client import Client
from ppadb.client import Client

from .constants import DEFAULT_AUTH_TIMEOUT_S

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -9,7 +9,7 @@
author='Jeff Irion',
author_email='jefflirion@users.noreply.github.com',
packages=['androidtv'],
install_requires=['adb-shell>=0.0.5', 'pure-python-adb-homeassistant>=0.1.7.dev0', 'pyasn1', 'rsa'],
install_requires=['adb-shell>=0.0.7', 'pure-python-adb>=0.2.2.dev0'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
Expand Down
6 changes: 3 additions & 3 deletions tests/patchers.py
Expand Up @@ -27,7 +27,7 @@ def close(self):


class ClientFakeSuccess(object):
"""A fake of the `adb_messenger.client.Client` class when the connection and shell commands succeed."""
"""A fake of the `ppadb.client.Client` class when the connection and shell commands succeed."""

def __init__(self, host='127.0.0.1', port=5037):
self._devices = []
Expand All @@ -44,7 +44,7 @@ def device(self, serial):


class ClientFakeFail(object):
"""A fake of the `adb_messenger.client.Client` class when the connection and shell commands fail."""
"""A fake of the `ppadb.client.Client` class when the connection and shell commands fail."""

def __init__(self, host='127.0.0.1', port=5037):
self._devices = []
Expand All @@ -60,7 +60,7 @@ def device(self, serial):


class DeviceFake(object):
"""A fake of the `adb_messenger.device.Device` class."""
"""A fake of the `ppadb.device.Device` class."""

def __init__(self, host):
self.host = host
Expand Down

0 comments on commit 3da4046

Please sign in to comment.