aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/push/PushLargeData.java
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/src/com/vaadin/tests/push/PushLargeData.java')
-rw-r--r--uitest/src/com/vaadin/tests/push/PushLargeData.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/uitest/src/com/vaadin/tests/push/PushLargeData.java b/uitest/src/com/vaadin/tests/push/PushLargeData.java
index 93925ffb9f..f43348b5eb 100644
--- a/uitest/src/com/vaadin/tests/push/PushLargeData.java
+++ b/uitest/src/com/vaadin/tests/push/PushLargeData.java
@@ -34,14 +34,14 @@ import com.vaadin.ui.UI;
public abstract class PushLargeData extends AbstractTestUIWithLog {
- // 250KB
- static final int DEFAULT_SIZE_BYTES = 250 * 1000;
+ // 200KB
+ static final int DEFAULT_SIZE_BYTES = 200 * 1000;
// Every other second
static final int DEFAULT_DELAY_MS = 2000;
- // 20 MB is enough for streaming to reconnect
- static final int DEFAULT_DATA_TO_PUSH = 20 * 1000 * 1000;
+ // 3 MB is enough for streaming to reconnect
+ static final int DEFAULT_DATA_TO_PUSH = 3 * 1000 * 1000;
static final int DEFAULT_DURATION_MS = DEFAULT_DATA_TO_PUSH
/ DEFAULT_SIZE_BYTES * DEFAULT_DELAY_MS;