aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/src')
-rw-r--r--uitest/src/com/vaadin/tests/fieldgroup/BasicPersonForm.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/tests/fieldgroup/BasicPersonForm.java b/uitest/src/com/vaadin/tests/fieldgroup/BasicPersonForm.java
index a223cea6a0..52d3e60af5 100644
--- a/uitest/src/com/vaadin/tests/fieldgroup/BasicPersonForm.java
+++ b/uitest/src/com/vaadin/tests/fieldgroup/BasicPersonForm.java
@@ -131,7 +131,9 @@ public class BasicPersonForm extends AbstractTestUIWithLog {
} catch (CommitException e) {
msg = "Commit failed: " + e.getMessage();
}
- Notification.show(msg);
+ Notification notification = new Notification(msg);
+ notification.setDelayMsec(Notification.DELAY_FOREVER);
+ notification.show(getPage());
log(msg);
}