File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 99 csgraph_to_dense , csgraph_from_dense
1010except ImportError :
1111 # Oldish versions of scipy don't have that
12- raise SkipTest ("Old version of scipy, doesn't have csgraph" )
12+ raise SkipTest ("Old version of scipy, doesn't have csgraph. " )
1313
1414
1515def test_graph_breadth_first ():
Original file line number Diff line number Diff line change @@ -297,9 +297,9 @@ def is_abstract(c):
297297 path = sklearn .__path__
298298 for importer , modname , ispkg in pkgutil .walk_packages (
299299 path = path , prefix = 'sklearn.' , onerror = lambda x : None ):
300- module = __import__ (modname , fromlist = "dummy" )
301300 if ".tests." in modname :
302301 continue
302+ module = __import__ (modname , fromlist = "dummy" )
303303 classes = inspect .getmembers (module , inspect .isclass )
304304 all_classes .extend (classes )
305305
You can’t perform that action at this time.
0 commit comments