@@ -26,11 +26,11 @@ def test_with():
2626
2727 aggregator = Aggregator .from_directory (
2828 Path (__file__ ).parent ,
29- reference = {"" : get_class_path (af .Exponential )},
29+ reference = {"" : get_class_path (af .ex . Exponential )},
3030 )
3131 output_list = list (aggregator )
3232 model_list = [output .model for output in output_list ]
33- assert any ([getattr (model , "cls" , False ) is af .Exponential for model in model_list ])
33+ assert any ([getattr (model , "cls" , False ) is af .ex . Exponential for model in model_list ])
3434
3535@pytest .fixture (name = "database_path" )
3636def database_path (output_directory ):
@@ -49,7 +49,7 @@ def database_aggregator(
4949 )
5050 aggregator .add_directory (
5151 directory ,
52- reference = {"" : get_class_path (af .Exponential )},
52+ reference = {"" : get_class_path (af .ex . Exponential )},
5353 completed_only = True ,
5454 )
5555
@@ -59,7 +59,7 @@ def database_aggregator(
5959def test_database (database_aggregator ):
6060 fit = list (database_aggregator )[0 ]
6161 model = fit .model
62- assert model .cls is af .Exponential
62+ assert model .cls is af .ex . Exponential
6363
6464
6565@pytest .fixture (name = "info" )
0 commit comments