Revision: 6611
Author: rj...@google.com
Date: Tue Nov  3 11:48:42 2009
Log: Fix accidentally extended timeout in JUnitShell

http://code.google.com/p/google-web-toolkit/source/detail?r=6611

Modified:
  /trunk/user/src/com/google/gwt/junit/JUnitShell.java

=======================================
--- /trunk/user/src/com/google/gwt/junit/JUnitShell.java        Mon Nov  2  
12:47:15 2009
+++ /trunk/user/src/com/google/gwt/junit/JUnitShell.java        Tue Nov  3  
11:48:42 2009
@@ -338,7 +338,7 @@
     * begin running the test. "Contacted" does not necessarily mean "the  
test has
     * begun," e.g. for linker errors stopping the test initialization.
     */
-  static final int TEST_BEGIN_TIMEOUT_MILLIS = 60000;
+  static final int TEST_BEGIN_TIMEOUT_MILLIS = 60 * 1000;

    /**
     * This is a system property that, when set, emulates command line  
arguments.
@@ -350,7 +350,7 @@
     * method, in milliseconds, measured from when the <i>last</i> client  
connects
     * (and thus starts the test). default of 5 minutes.
     */
-  private static final long TEST_METHOD_TIMEOUT_MILLIS = 50 * 60 * 1000;
+  private static final long TEST_METHOD_TIMEOUT_MILLIS = 5 * 60 * 1000;

    /**
     * Singleton object for hosting unit tests. All test case instances  
executed

--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---

Reply via email to