@@ -25,7 +25,6 @@ def html_profile() -> str:
2525 "constant" : np .ones (size ),
2626 "sin" : [round (np .sin (x * np .pi / 180 ), 2 ) for x in time_steps ],
2727 "cos" : [round (np .cos (x * np .pi / 180 ), 2 ) for x in time_steps ],
28- "uniform" : [round (x , 2 ) for x in np .random .uniform (0 , 10 , size )],
2928 "gaussian" : [round (x , 2 ) for x in np .random .normal (0 , 1 , size )],
3029 }
3130 )
@@ -37,7 +36,7 @@ def html_profile() -> str:
3736def test_timeseries_identification (html_profile : str ):
3837 assert "<th>TimeSeries</th>" in html_profile , "TimeSeries not detected"
3938 assert (
40- "<tr><th>TimeSeries</th><td>8 </td></tr>" in html_profile
39+ "<tr><th>TimeSeries</th><td>9 </td></tr>" in html_profile
4140 ), "TimeSeries incorrectly identified"
4241
4342
@@ -46,7 +45,7 @@ def test_timeseries_autocorrelation_tab(html_profile: str):
4645 "role=tab data-toggle=tab>Autocorrelation<" in html_profile
4746 ), "TimeSeries not detected"
4847 assert (
49- html_profile .count ("role=tab data-toggle=tab>Autocorrelation<" ) == 8
48+ html_profile .count ("role=tab data-toggle=tab>Autocorrelation<" ) == 9
5049 ), "TimeSeries autocorrelation tabs incorrectly generated"
5150
5251
0 commit comments