Revision: 6866 Author: [email protected] Date: Wed Nov 11 21:11:00 2009 Log: tr...@6864 was merged into this branch Fixes a unit testing break introduced by r6859. svn merge --ignore-ancestry -c6864 https://google-web-toolkit.googlecode.com/svn/trunk/ .
http://code.google.com/p/google-web-toolkit/source/detail?r=6866 Modified: /releases/2.0/branch-info.txt /releases/2.0/dev/core/test/com/google/gwt/dev/shell/remoteui/MessageTransportTest.java ======================================= --- /releases/2.0/branch-info.txt Wed Nov 11 18:35:07 2009 +++ /releases/2.0/branch-info.txt Wed Nov 11 21:11:00 2009 @@ -588,3 +588,7 @@ reviews.appspot.com/100805. svn merge --ignore-ancestry -c6859 https://google-web-toolkit.googlecode.com/svn/trunk/ . +tr...@6864 was merged into this branch + Fixes a unit testing break introduced by r6859. + svn merge --ignore-ancestry -c6864 https://google-web-toolkit.googlecode.com/svn/trunk/ . + ======================================= --- /releases/2.0/dev/core/test/com/google/gwt/dev/shell/remoteui/MessageTransportTest.java Wed Nov 11 18:35:07 2009 +++ /releases/2.0/dev/core/test/com/google/gwt/dev/shell/remoteui/MessageTransportTest.java Wed Nov 11 21:11:00 2009 @@ -281,8 +281,8 @@ fail("Should not have timed out"); } catch (ExecutionException e) { // This is where we should hit - assertTrue("Expected: IllegalStateException, actual:" + e.getCause(), - e.getCause() instanceof IllegalStateException); + assertTrue("Expected: MessageTransport.RequestException, actual:" + + e.getCause(), e.getCause() instanceof RequestException); RequestException re = (RequestException) e.getCause(); assertEquals(re.getMessage(), "Unable to process the request."); } catch (Exception e) { -- http://groups.google.com/group/Google-Web-Toolkit-Contributors
