@@ -138,6 +138,9 @@ def test_it_serializes_workout_without_file(
138138 "max_power" : None ,
139139 "max_speed" : workout .max_speed ,
140140 "min_alt" : None ,
141+ "missing_elevations_processing" : (
142+ workout .missing_elevations_processing
143+ ),
141144 "modification_date" : None ,
142145 "moving" : str (workout .moving ),
143146 "next_workout" : None ,
@@ -200,6 +203,9 @@ def test_it_serializes_workout_without_file_and_with_ascent_and_descent(
200203 "max_power" : None ,
201204 "max_speed" : workout .max_speed ,
202205 "min_alt" : None ,
206+ "missing_elevations_processing" : (
207+ workout .missing_elevations_processing
208+ ),
203209 "modification_date" : workout .modification_date ,
204210 "moving" : str (workout .moving ),
205211 "next_workout" : None ,
@@ -271,6 +277,9 @@ def test_it_serializes_workout_with_file_for_cycling_and_geometry(
271277 "max_power" : workout .max_power ,
272278 "max_speed" : float (workout .max_speed ), # type: ignore[arg-type]
273279 "min_alt" : float (workout .min_alt ), # type: ignore[arg-type]
280+ "missing_elevations_processing" : (
281+ workout .missing_elevations_processing
282+ ),
274283 "modification_date" : workout .modification_date ,
275284 "moving" : str (workout .moving ),
276285 "next_workout" : None ,
@@ -347,6 +356,9 @@ def test_it_serializes_workout_with_file_for_outdoor_tennis(
347356 "min_alt" : None ,
348357 "modification_date" : workout .modification_date ,
349358 "moving" : str (workout .moving ),
359+ "missing_elevations_processing" : (
360+ workout .missing_elevations_processing
361+ ),
350362 "next_workout" : None ,
351363 "notes" : None ,
352364 "original_file" : "gpx" ,
@@ -424,6 +436,9 @@ def test_it_serializes_workout_with_file_for_running(
424436 "max_power" : None ,
425437 "max_speed" : float (workout .max_speed ), # type: ignore [arg-type]
426438 "min_alt" : workout .min_alt ,
439+ "missing_elevations_processing" : (
440+ workout .missing_elevations_processing
441+ ),
427442 "modification_date" : workout .modification_date ,
428443 "moving" : str (workout .moving ),
429444 "next_workout" : None ,
@@ -499,6 +514,9 @@ def test_it_serializes_workout_with_file_for_paragliding(
499514 "max_power" : None ,
500515 "max_speed" : float (workout .max_speed ), # type: ignore [arg-type]
501516 "min_alt" : workout .min_alt ,
517+ "missing_elevations_processing" : (
518+ workout .missing_elevations_processing
519+ ),
502520 "modification_date" : workout .modification_date ,
503521 "moving" : str (workout .moving ),
504522 "next_workout" : None ,
@@ -661,6 +679,9 @@ def test_it_serializes_suspended_workout(
661679 "max_power" : None ,
662680 "max_speed" : workout_cycling_user_1 .max_speed ,
663681 "min_alt" : None ,
682+ "missing_elevations_processing" : (
683+ workout_cycling_user_1 .missing_elevations_processing
684+ ),
664685 "modification_date" : workout_cycling_user_1 .modification_date ,
665686 "moving" : str (workout_cycling_user_1 .moving ),
666687 "next_workout" : None ,
0 commit comments