Skip to content
Snippets Groups Projects
Commit 39f66cab authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

Task #9116: fixed typo in test

parent 60d93688
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ def do_rpc(rpc_instance, arg_dict): ...@@ -60,7 +60,7 @@ def do_rpc(rpc_instance, arg_dict):
if __name__ == "__main__": if __name__ == "__main__":
busname = sys.argv[1] if len(sys.argv) > 1 else "simpletest" busname = sys.argv[1] if len(sys.argv) > 1 else "simpletest"
with RPC("OTDBService.TaskGetIDs", ForwardExceptions=True, busname="lofar.otdb.specification", timeout=10) as otdbRPC: with RPC("OTDBService.TaskGetIDs", ForwardExceptions=True, busname=busname, timeout=10) as otdbRPC:
# Existing: otdb_id:1099268, mom_id:353713 # Existing: otdb_id:1099268, mom_id:353713
do_rpc (otdbRPC, {'OtdbID': 1099268, 'MomID': 353713 }) do_rpc (otdbRPC, {'OtdbID': 1099268, 'MomID': 353713 })
do_rpc (otdbRPC, {'OtdbID': 1099268, 'MomID': 5 }) do_rpc (otdbRPC, {'OtdbID': 1099268, 'MomID': 5 })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment