Skip to content

Commit d0fae87

Browse files
author
OliverBScott
committed
Fixed broken imports
1 parent 5b9ba80 commit d0fae87

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

tests/analysis/test_cse.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"""
44

55
import random
6-
76
import scaffoldgraph as sg
8-
from scaffoldgraph.analysis import CSE
97

8+
from scaffoldgraph.analysis import CSE
9+
from .. import mock_sdf
1010

1111
def test_cse(sdf_file):
1212
network = sg.ScaffoldNetwork.from_sdf(sdf_file)

tests/test_network.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
import scaffoldgraph as sg
88

9+
from . import mock_sdf, mock_smiles_file
10+
911

1012
@pytest.fixture(name='test_net')
1113
def test_network(sdf_file):

tests/test_tree.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
import scaffoldgraph as sg
99

10+
from . import mock_sdf, mock_smiles_file
11+
1012

1113
@pytest.fixture(name='test_tree')
1214
def test_tree_graph(sdf_file):

0 commit comments

Comments
 (0)