@@ -253,7 +253,7 @@ def _chunker(seq, size):
253253 return (seq [pos : pos + size ] for pos in range (0 , len (seq ), size ))
254254
255255
256- class Test_shared_dataframes (ImproverTest ):
256+ class SetupSharedDataFrames (ImproverTest ):
257257
258258 """A shared dataframe creation class."""
259259
@@ -347,7 +347,7 @@ def setUp(self):
347347 )
348348
349349
350- class Test_constructed_forecast_cubes ( Test_shared_dataframes ):
350+ class SetupConstructedForecastCubes ( SetupSharedDataFrames ):
351351
352352 """A constructed forecast cube class."""
353353
@@ -418,7 +418,7 @@ def setUp(self):
418418 self .expected_instantaneous_forecast .coord (coord ).bounds = None
419419
420420
421- class Test_constructed_truth_cubes ( Test_shared_dataframes ):
421+ class SetupConstructedTruthCubes ( SetupSharedDataFrames ):
422422
423423 """A constructed truth cube class."""
424424
@@ -457,7 +457,7 @@ def setUp(self):
457457 self .expected_instantaneous_truth .coord ("time" ).bounds = None
458458
459459
460- class Test_forecast_dataframe_to_cube (Test_constructed_forecast_cubes ):
460+ class Test_forecast_dataframe_to_cube (SetupConstructedForecastCubes ):
461461
462462 """Test the forecast_dataframe_to_cube function."""
463463
@@ -508,7 +508,7 @@ def test_nonunique_values_in_column(self):
508508 forecast_dataframe_to_cube (df , self .date_range , self .forecast_period )
509509
510510
511- class Test_truth_dataframe_to_cube (Test_constructed_truth_cubes ):
511+ class Test_truth_dataframe_to_cube (SetupConstructedTruthCubes ):
512512
513513 """Test the truth_dataframe_to_cube function."""
514514
@@ -555,7 +555,7 @@ def test_nonunique_values_in_column(self):
555555
556556
557557class Test_forecast_and_truth_dataframes_to_cubes (
558- Test_constructed_forecast_cubes , Test_constructed_truth_cubes
558+ SetupConstructedForecastCubes , SetupConstructedTruthCubes
559559):
560560
561561 """Test the forecast_and_truth_dataframes_to_cubes function."""
0 commit comments