Skip to content

Commit 5df68cf

Browse files
committed
test 3
1 parent 89c583f commit 5df68cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/py_dss_interface/test_DSS.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
import os
44
import pathlib
5-
from py_dss_interface import DSSDLL
5+
import py_dss_interface
66

77
script_path = os.path.dirname(os.path.abspath(__file__))
88
ddll_path = os.path.join(pathlib.Path(script_path).parent.parent, "DDLL")
99

1010
@pytest.fixture
1111
def DSS():
1212

13-
dss = DSSDLL(ddll_path)
13+
dss = py_dss_interface.DSSDLL(ddll_path)
1414
actual = dss.opendss_started
1515
expected = True
1616

0 commit comments

Comments
 (0)