diff --git a/test/unit/test_exports/test_derived_quantities/test_average_surface.py b/test/unit/test_exports/test_derived_quantities/test_average_surface.py index 12d1d55be..f26363eab 100644 --- a/test/unit/test_exports/test_derived_quantities/test_average_surface.py +++ b/test/unit/test_exports/test_derived_quantities/test_average_surface.py @@ -163,7 +163,7 @@ def test_average_surface_cylindrical_title_no_units_solute(): festim.AverageSurfaceCylindrical with a solute field without units""" my_export = AverageSurfaceCylindrical("solute", 4) - assert my_export.title == "Average solute surface 4" + assert my_export.title == "Average solute surface 4 (H m-3)" def test_average_surface_cylindrical_title_no_units_temperature(): @@ -171,7 +171,7 @@ def test_average_surface_cylindrical_title_no_units_temperature(): festim.AverageSurfaceCylindrical with a T field without units""" my_export = AverageSurfaceCylindrical("T", 5) - assert my_export.title == "Average T surface 5" + assert my_export.title == "Average T surface 5 (K)" def test_average_surface_spherical_title_no_units_solute(): @@ -179,7 +179,7 @@ def test_average_surface_spherical_title_no_units_solute(): festim.AverageSurfaceSpherical with a solute field without units""" my_export = AverageSurfaceSpherical("solute", 6) - assert my_export.title == "Average solute surface 6" + assert my_export.title == "Average solute surface 6 (H m-3)" def test_average_surface_spherical_title_no_units_temperature(): @@ -187,4 +187,4 @@ def test_average_surface_spherical_title_no_units_temperature(): festim.AverageSurfaceSpherical with a T field without units""" my_export = AverageSurfaceSpherical("T", 9) - assert my_export.title == "Average T surface 9" + assert my_export.title == "Average T surface 9 (K)" diff --git a/test/unit/test_exports/test_derived_quantities/test_average_volume.py b/test/unit/test_exports/test_derived_quantities/test_average_volume.py index f4c59f5eb..2e3ed0b54 100644 --- a/test/unit/test_exports/test_derived_quantities/test_average_volume.py +++ b/test/unit/test_exports/test_derived_quantities/test_average_volume.py @@ -144,7 +144,7 @@ def test_average_volume_cylindrical_title_no_units_solute(): festim.AverageVolumeCylindrical with a solute field without units""" my_export = AverageVolumeCylindrical("solute", 4) - assert my_export.title == "Average solute volume 4" + assert my_export.title == "Average solute volume 4 (H m-3)" def test_average_volume_cylindrical_title_no_units_temperature(): @@ -152,7 +152,7 @@ def test_average_volume_cylindrical_title_no_units_temperature(): festim.AverageVolumeCylindrical with a T field without units""" my_export = AverageVolumeCylindrical("T", 5) - assert my_export.title == "Average T volume 5" + assert my_export.title == "Average T volume 5 (K)" def test_average_volume_spherical_title_no_units_solute(): @@ -160,7 +160,7 @@ def test_average_volume_spherical_title_no_units_solute(): festim.AverageVolumeSpherical with a solute field without units""" my_export = AverageVolumeSpherical("solute", 6) - assert my_export.title == "Average solute volume 6" + assert my_export.title == "Average solute volume 6 (H m-3)" def test_average_volume_spherical_title_no_units_temperature(): @@ -168,4 +168,4 @@ def test_average_volume_spherical_title_no_units_temperature(): festim.AverageVolumeSpherical with a T field without units""" my_export = AverageVolumeSpherical("T", 9) - assert my_export.title == "Average T volume 9" + assert my_export.title == "Average T volume 9 (K)"