diff options
author | Artur Signell <artur@vaadin.com> | 2014-02-20 17:40:02 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2014-02-20 17:40:39 +0200 |
commit | ed82d1ae7914857e026056662d94da333e235d77 (patch) | |
tree | b60426dec84741240b31ee9edbb6144c4b06af60 /uitest/src | |
parent | 6c076e3c12f387726316db74190dac97cf886612 (diff) | |
download | vaadin-framework-ed82d1ae7914857e026056662d94da333e235d77.tar.gz vaadin-framework-ed82d1ae7914857e026056662d94da333e235d77.zip |
Slow down test to hopefully make it more stable (and four times longer)
Change-Id: Ie9ef1c53544b5b9b3462cf6648b18df8ae8f56e0
Diffstat (limited to 'uitest/src')
-rw-r--r-- | uitest/src/com/vaadin/tests/push/PushLargeData.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/push/PushLargeData.java b/uitest/src/com/vaadin/tests/push/PushLargeData.java index 83f573ed2c..93925ffb9f 100644 --- a/uitest/src/com/vaadin/tests/push/PushLargeData.java +++ b/uitest/src/com/vaadin/tests/push/PushLargeData.java @@ -34,8 +34,8 @@ import com.vaadin.ui.UI; public abstract class PushLargeData extends AbstractTestUIWithLog { - // 1MB - static final int DEFAULT_SIZE_BYTES = 1000 * 1000; + // 250KB + static final int DEFAULT_SIZE_BYTES = 250 * 1000; // Every other second static final int DEFAULT_DELAY_MS = 2000; |