aboutsummaryrefslogtreecommitdiff
path: root/test/test_send_fake_sound_hit.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_send_fake_sound_hit.py')
-rwxr-xr-xtest/test_send_fake_sound_hit.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/test/test_send_fake_sound_hit.py b/test/test_send_fake_sound_hit.py
index 9660c45..3cc3e50 100755
--- a/test/test_send_fake_sound_hit.py
+++ b/test/test_send_fake_sound_hit.py
@@ -1,14 +1,8 @@
#!/usr/bin/env python3
-import sys
-import os.path
-sys.path.extend([
- os.path.realpath(
- os.path.join(os.path.dirname(os.path.join(__file__)), '..')
- )
-])
+import __py_include
from argparse import ArgumentParser
-from src.home.util import send_datagram, stringify, parse_addr
+from homekit.util import send_datagram, stringify, Addr
if __name__ == '__main__':
@@ -22,4 +16,4 @@ if __name__ == '__main__':
args = parser.parse_args()
- send_datagram(stringify([args.name, args.hits]), parse_addr(args.server))
+ send_datagram(stringify([args.name, args.hits]), Addr.fromstring(args.server))