From d4029b8e3743fa35e449e4471060e7287de8a679 Mon Sep 17 00:00:00 2001 From: Amr Abouelleil Date: Wed, 13 Sep 2017 08:55:34 -0400 Subject: [PATCH] -fixed typo in get_cromwell_links -renamed unit tests to be more accurately named --- tests/{test_cromwell_ale.py => test_cromwell_26.py} | 0 tests/{test_cromwell_btl.py => test_cromwell_28.py} | 0 widdler.py | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename tests/{test_cromwell_ale.py => test_cromwell_26.py} (100%) rename tests/{test_cromwell_btl.py => test_cromwell_28.py} (100%) diff --git a/tests/test_cromwell_ale.py b/tests/test_cromwell_26.py similarity index 100% rename from tests/test_cromwell_ale.py rename to tests/test_cromwell_26.py diff --git a/tests/test_cromwell_btl.py b/tests/test_cromwell_28.py similarity index 100% rename from tests/test_cromwell_btl.py rename to tests/test_cromwell_28.py diff --git a/widdler.py b/widdler.py index 1cc601e..523e0ee 100644 --- a/widdler.py +++ b/widdler.py @@ -179,7 +179,7 @@ def call_restart(args): def get_cromwell_links(server, workflow_id, port): return {'metadata': 'http://{}:{}/api/workflows/v1/{}/metadata'.format(server, port, workflow_id), - 'timing': 'http://{}:{}/api/workflows/v1/{}/metadata'.format(server, port, workflow_id)} + 'timing': 'http://{}:{}/api/workflows/v1/{}/timing'.format(server, port, workflow_id)} def call_explain(args):