@@ -32,9 +32,7 @@ def test_models_edx_converters_xapi_video_ui_load_video_to_video_initialized(
3232 expected xAPI statement.
3333 """
3434 event = mock_instance (UILoadVideo )
35- event .context .course_id = (
36- "course-v1:a+b+c" # TODO: see why generation does not work and remove this
37- )
35+ event .context .course_id = "course-v1:a+b+c"
3836
3937 platform_url = mock_url ()
4038
@@ -93,9 +91,7 @@ def test_models_edx_converters_xapi_video_ui_play_video_to_video_played(uuid_nam
9391 xAPI statement.
9492 """
9593 event = mock_instance (UIPlayVideo )
96- event .context .course_id = (
97- "course-v1:a+b+c" # TODO: see why generation does not work and remove this
98- )
94+ event .context .course_id = "course-v1:a+b+c"
9995
10096 platform_url = mock_url ()
10197
@@ -160,9 +156,7 @@ def test_models_edx_converters_xapi_video_ui_pause_video_to_video_paused(
160156 statement.
161157 """
162158 event = mock_instance (UIPauseVideo )
163- event .context .course_id = (
164- "course-v1:a+b+c" # TODO: see why generation does not work and remove this
165- )
159+ event .context .course_id = "course-v1:a+b+c"
166160
167161 platform_url = mock_url ()
168162
@@ -228,9 +222,7 @@ def test_models_edx_converters_xapi_video_ui_stop_video_to_video_terminated(
228222 xAPI statement.
229223 """
230224 event = mock_instance (UIStopVideo )
231- event .context .course_id = (
232- "course-v1:a+b+c" # TODO: see why generation does not work and remove this
233- )
225+ event .context .course_id = "course-v1:a+b+c"
234226
235227 platform_url = mock_url ()
236228
@@ -295,9 +287,7 @@ def test_models_edx_converters_xapi_video_ui_seek_video_to_video_seeked(uuid_nam
295287 xAPI statement.
296288 """
297289 event = mock_instance (UISeekVideo )
298- event .context .course_id = (
299- "course-v1:a+b+c" # TODO: see why generation does not work and remove this
300- )
290+ event .context .course_id = "course-v1:a+b+c"
301291
302292 platform_url = mock_url ()
303293
0 commit comments