make -standardsMode the default for GwtTestCase.

Review by: rjrjr@google.com

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@9883 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/junit/JUnitShell.java b/user/src/com/google/gwt/junit/JUnitShell.java
index b79d5a2..c82dac9 100644
--- a/user/src/com/google/gwt/junit/JUnitShell.java
+++ b/user/src/com/google/gwt/junit/JUnitShell.java
@@ -874,7 +874,7 @@
    */
   private String runStyleName = "HtmlUnit";
 
-  private boolean standardsMode = false;
+  private boolean standardsMode = true;
 
   /**
    * Test method timeout as modified by the batching strategy.
diff --git a/user/test/com/google/gwt/junit/JUnitShellTest.java b/user/test/com/google/gwt/junit/JUnitShellTest.java
index 0e3c8da5..3b8dc48 100644
--- a/user/test/com/google/gwt/junit/JUnitShellTest.java
+++ b/user/test/com/google/gwt/junit/JUnitShellTest.java
@@ -31,7 +31,7 @@
 
   public void testDefaultModuleUrl() throws Exception {
     parseGoodArgs();
-    assertEquals("http://localhost:1234/example/junit.html?gwt.codesvr=localhost:456",
+    assertEquals("http://localhost:1234/example/junit-standards.html?gwt.codesvr=localhost:456",
         shell.getModuleUrl("localhost", 1234, "example", 456));
   }