We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb4aa8c commit 071f4c4Copy full SHA for 071f4c4
apstools/devices/tests/test_aps_data_management.py
@@ -7,8 +7,10 @@
7
import pytest
8
9
from .. import DM_WorkflowConnector
10
+
11
# from dm.common.exceptions.dmException import DmException
12
13
14
@pytest.mark.parametrize("wf_name", ["a_workflow_name"])
15
def test_object(wf_name):
16
wf = DM_WorkflowConnector(name="wf", workflow=wf_name)
@@ -22,5 +24,5 @@ def test_object(wf_name):
22
24
23
25
with pytest.raises(Exception) as exc:
26
# FIXME: will fail if run on APS subnet!
- workflow_list = wf.workflows
27
+ wf.workflows
28
assert str(exc.value).endswith(" Connection refused")
0 commit comments