aboutsummaryrefslogtreecommitdiff
path: root/test_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'test_client.py')
-rwxr-xr-xtest_client.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test_client.py b/test_client.py
index 9e2f15c..5176ad2 100755
--- a/test_client.py
+++ b/test_client.py
@@ -43,7 +43,7 @@ def cli():
def start(host: int):
"""Start a session on the RWA.Support.WebApp host with index HOST."""
click.echo(f"Sending D-Bus request 'start': {host}")
- response = req.start()
+ response = req.start(host)
click.echo(f"Your response is: {response}")
@@ -73,6 +73,5 @@ def refresh_status(pid: int):
response = req.refresh_status(pid)
click.echo(f"Your response is: {response}")
-
if __name__ == "__main__":
cli()