I get this error
---------------------------------------------------------------------------
AssertionError Traceback (most recent call last)
in
15 print("\033[92m All tests passed!")
16
—> 17 insert_audio_clip_test(insert_audio_clip)
in insert_audio_clip_test(target)
5 duration = segment_time[1] - segment_time[0]
6 assert segment_time[0] > 4400, “Error: The audio clip is overlaping with the first segment”
----> 7 assert duration + 1 == len(activates[0]) , “The segment length must match the audio clip length”
8 assert audio_clip != backgrounds[0] , “The audio clip must be different than the pure background”
9
AssertionError: The segment length must match the audio clip length