Reviewers: mdempsky,

Description:
Attempt to fix flakiness in testGetClientSize by bumping up the timeout.
(I didn't track down the root cause.)


Please review this at http://gwt-code-reviews.appspot.com/1814803/

Affected files:
  M user/test/com/google/gwt/user/client/WindowTest.java


Index: user/test/com/google/gwt/user/client/WindowTest.java
===================================================================
--- user/test/com/google/gwt/user/client/WindowTest.java        (revision 11232)
+++ user/test/com/google/gwt/user/client/WindowTest.java        (working copy)
@@ -221,7 +221,7 @@
     final Label largeDOM = new Label();
     largeDOM.setPixelSize(oldClientWidth + 100, oldClientHeight + 100);
     RootPanel.get().add(largeDOM);
-    delayTestFinish(200);
+    delayTestFinish(1000);
     DeferredCommand.addCommand(new Command() {
       public void execute() {
         int newClientHeight = Window.getClientHeight();


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

Reply via email to