Skip to content

Commit 071f4c4

Browse files
committed
STY #851
1 parent cb4aa8c commit 071f4c4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apstools/devices/tests/test_aps_data_management.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@
77
import pytest
88

99
from .. import DM_WorkflowConnector
10+
1011
# from dm.common.exceptions.dmException import DmException
1112

13+
1214
@pytest.mark.parametrize("wf_name", ["a_workflow_name"])
1315
def test_object(wf_name):
1416
wf = DM_WorkflowConnector(name="wf", workflow=wf_name)
@@ -22,5 +24,5 @@ def test_object(wf_name):
2224

2325
with pytest.raises(Exception) as exc:
2426
# FIXME: will fail if run on APS subnet!
25-
workflow_list = wf.workflows
27+
wf.workflows
2628
assert str(exc.value).endswith(" Connection refused")

0 commit comments

Comments
 (0)