| commit | 43460a02c3b78a807adc669b03557428a31193d1 | [log] [tgz] |
|---|---|---|
| author | skybrian@google.com <skybrian@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Wed Mar 23 18:52:31 2011 +0000 |
| committer | skybrian@google.com <skybrian@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Wed Mar 23 18:52:31 2011 +0000 |
| tree | efc2cc6e0c44abe730f32ff4fe6adf4668c1c5ff | |
| parent | 7e18443d30199f95566203f630a58f35696936e3 [diff] |
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)); }