Index: TestHarness4LAMS2/src/org/lamsfoundation/testharness/monitor/MockMonitor.java =================================================================== RCS file: /usr/local/cvsroot/TestHarness4LAMS2/src/org/lamsfoundation/testharness/monitor/MockMonitor.java,v diff -u -r1.3 -r1.4 --- TestHarness4LAMS2/src/org/lamsfoundation/testharness/monitor/MockMonitor.java 8 Feb 2008 06:28:51 -0000 1.3 +++ TestHarness4LAMS2/src/org/lamsfoundation/testharness/monitor/MockMonitor.java 19 Jan 2012 12:29:34 -0000 1.4 @@ -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)) {