@@ -116,7 +116,7 @@ def test_calculate_property_values(self, control_property: str, value: Any) -> N
116116 ("numSimulationPoints" , 10 ),
117117 ("resampleMinAngle" , 0.2 ),
118118 ("resampleNPoints" , 1 ),
119- ("display" , Display .Notify ),
119+ ("display" , Display .Final ),
120120 ],
121121 )
122122 def test_calculate_property_setters (self , control_property : str , value : Any ) -> None :
@@ -211,7 +211,7 @@ def test_calculate_parallel_validation(self, value: Any) -> None:
211211 @pytest .mark .parametrize ("value" , ["test" , "iterate" , True , 1 , 3.0 ])
212212 def test_calculate_display_validation (self , value : Any ) -> None :
213213 """Tests the display setter validation in Calculate class."""
214- with pytest .raises (pydantic .ValidationError , match = "Input should be 'off', 'iter', 'notify' or 'final'" ):
214+ with pytest .raises (pydantic .ValidationError , match = "Input should be 'off', 'iter' or 'final'" ):
215215 self .calculate .display = value
216216
217217 def test_str (self , table_str ) -> None :
@@ -277,7 +277,7 @@ def test_simplex_property_values(self, control_property: str, value: Any) -> Non
277277 ("numSimulationPoints" , 10 ),
278278 ("resampleMinAngle" , 0.2 ),
279279 ("resampleNPoints" , 1 ),
280- ("display" , Display .Notify ),
280+ ("display" , Display .Final ),
281281 ("xTolerance" , 4e-6 ),
282282 ("funcTolerance" , 3e-4 ),
283283 ("maxFuncEvals" , 100 ),
@@ -436,7 +436,7 @@ def test_de_property_values(self, control_property: str, value: Any) -> None:
436436 ("numSimulationPoints" , 10 ),
437437 ("resampleMinAngle" , 0.2 ),
438438 ("resampleNPoints" , 1 ),
439- ("display" , Display .Notify ),
439+ ("display" , Display .Final ),
440440 ("populationSize" , 20 ),
441441 ("fWeight" , 0.3 ),
442442 ("crossoverProbability" , 0.4 ),
@@ -603,7 +603,7 @@ def test_ns_property_values(self, control_property: str, value: Any) -> None:
603603 ("numSimulationPoints" , 10 ),
604604 ("resampleMinAngle" , 0.2 ),
605605 ("resampleNPoints" , 1 ),
606- ("display" , Display .Notify ),
606+ ("display" , Display .Final ),
607607 ("nLive" , 1500 ),
608608 ("nMCMC" , 1 ),
609609 ("propScale" , 0.5 ),
@@ -773,7 +773,7 @@ def test_dream_property_values(self, control_property: str, value: Any) -> None:
773773 ("numSimulationPoints" , 10 ),
774774 ("resampleMinAngle" , 0.2 ),
775775 ("resampleNPoints" , 1 ),
776- ("display" , Display .Notify ),
776+ ("display" , Display .Final ),
777777 ("nSamples" , 500 ),
778778 ("nChains" , 1000 ),
779779 ("jumpProbability" , 0.7 ),
0 commit comments