Index: lams_monitoring/test/java/org/lamsfoundation/lams/monitoring/service/TestMonitoringService.java =================================================================== RCS file: /usr/local/cvsroot/lams_monitoring/test/java/org/lamsfoundation/lams/monitoring/service/Attic/TestMonitoringService.java,v diff -u -r1.44 -r1.45 --- lams_monitoring/test/java/org/lamsfoundation/lams/monitoring/service/TestMonitoringService.java 6 Feb 2007 05:33:12 -0000 1.44 +++ lams_monitoring/test/java/org/lamsfoundation/lams/monitoring/service/TestMonitoringService.java 3 Sep 2008 05:15:16 -0000 1.45 @@ -162,7 +162,8 @@ Boolean.TRUE, TEST_LEARNING_DESIGN_ID, null, - testUser.getUserId()); + testUser.getUserId(), + null); TEST_LESSON_ID=testLesson.getLessonId(); Lesson createdLesson = lessonDao.getLesson(TEST_LESSON_ID); assertNotNull(createdLesson); @@ -339,7 +340,7 @@ private Lesson startLesson(String testName, String testDesc) { try { - Lesson previewLesson = monitoringService.initializeLessonForPreview(testName,testDesc,TEST_LEARNING_DESIGN_SURVEY_ONLY_ID,TEST_USER_ID); + Lesson previewLesson = monitoringService.initializeLessonForPreview(testName,testDesc,TEST_LEARNING_DESIGN_SURVEY_ONLY_ID,TEST_USER_ID, null); assertNotNull("Lesson created",previewLesson); assertNotNull("Lesson has been saved - an id exists", previewLesson.getLessonId());