| commit | 4db174c7aa92d9d09877b245c4eae8b616e86c03 | [log] [tgz] | 
|---|---|---|
| author | skybrian@google.com <skybrian@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Fri Oct 07 17:25:54 2011 +0000 | 
| committer | skybrian@google.com <skybrian@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Fri Oct 07 17:25:54 2011 +0000 | 
| tree | 3273ab3c0ba6519e5d99ad5104fe628fedddc555 | |
| parent | 0d1a4b49b491dcda60bfdc913fac2e0532097f4e [diff] | 
Change the superclass of the translatable version of junit.framework.AssertionFailedError to match the JVM version, for consistency when catching java.lang.AssertionError in testing tools. Fixes issue 6863. Review at http://gwt-code-reviews.appspot.com/1565803 Review by: rjrjr@google.com git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@10694 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/super/com/google/gwt/junit/translatable/junit/framework/AssertionFailedError.java b/user/super/com/google/gwt/junit/translatable/junit/framework/AssertionFailedError.java index c42a09a..986d67a 100644 --- a/user/super/com/google/gwt/junit/translatable/junit/framework/AssertionFailedError.java +++ b/user/super/com/google/gwt/junit/translatable/junit/framework/AssertionFailedError.java
@@ -18,7 +18,7 @@ /** * Translatable version of JUnit's <code>AssertionFailedError</code>. */ -public class AssertionFailedError extends Error { +public class AssertionFailedError extends AssertionError { public AssertionFailedError() { }