Index: TestHarness4LAMS2/src/org/lamsfoundation/testharness/monitor/MockMonitor.java =================================================================== diff -u -rc6ee15a5f86cbe315af4e6c2a933275fb8a1d41e -r37aaf72e80ec26390b5d0148669b3245d26c2f04 --- TestHarness4LAMS2/src/org/lamsfoundation/testharness/monitor/MockMonitor.java (.../MockMonitor.java) (revision c6ee15a5f86cbe315af4e6c2a933275fb8a1d41e) +++ TestHarness4LAMS2/src/org/lamsfoundation/testharness/monitor/MockMonitor.java (.../MockMonitor.java) (revision 37aaf72e80ec26390b5d0148669b3245d26c2f04) @@ -83,7 +83,6 @@ public String initLesson(String initLessonURL, String ldId, String userId, String name) { try { - delay(); if ( userId == null ) { throw new TestHarnessException("User id is missing. If you have set UserCreated (admin properties) to true, then you must set UserId in the monitor properties."); } @@ -103,7 +102,6 @@ public void createLessonClass(String createLessonClassURL, String userId) { try { - delay(); String url = createLessonClassURL.replace(USER_ID_PATTERN, userId); InputStream postBodyIS = buildPostBody(); new Call(wc, test, "Create Lesson Class", url, postBodyIS, WDDX_CONTENT_TYPE).execute(); @@ -115,7 +113,6 @@ public void startLesson(String startLessonURL, String lsId, String userId) { try { - delay(); String url = startLessonURL.replace(LESSON_ID_PATTERN, lsId).replace(USER_ID_PATTERN, userId); WebResponse resp = (WebResponse) new Call(wc, test, "Start Lesson", url).execute(); if (!checkPageContains(resp, LESSON_CREATED_FLAG)) {