test('areLessonsSameClass should identify lessons with different ModuleCode as different class', () => {
  const otherLesson: Lesson = lessonWithDifferentProperty(mockLesson, 'moduleCode');
  expect(areLessonsSameClass(mockLesson, otherLesson)).toBe(false);
});