Skip to content

Commit 9518a13

Browse files
committed
TEST prefix test directories with test_
1 parent 1bd8b06 commit 9518a13

16 files changed

Lines changed: 2 additions & 2 deletions
File renamed without changes.
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,9 +496,9 @@ def test_subflow_version_propagated(self):
496496
this_directory = os.path.dirname(os.path.abspath(__file__))
497497
tests_directory = os.path.abspath(os.path.join(this_directory, '..', '..'))
498498
sys.path.append(tests_directory)
499-
import tests.flows.dummy_learn.dummy_forest
499+
import tests.test_flows.dummy_learn.dummy_forest
500500
pca = sklearn.decomposition.PCA()
501-
dummy = tests.flows.dummy_learn.dummy_forest.DummyRegressor()
501+
dummy = tests.test_flows.dummy_learn.dummy_forest.DummyRegressor()
502502
pipeline = sklearn.pipeline.Pipeline((('pca', pca), ('dummy', dummy)))
503503
flow = sklearn_to_flow(pipeline)
504504
# In python2.7, the unit tests work differently on travis-ci; therefore,

0 commit comments

Comments
 (0)