summaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/src/com/vaadin/tests/appengine/GAESyncTest.java')
-rw-r--r--uitest/src/com/vaadin/tests/appengine/GAESyncTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java b/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java
index f5d90bae79..146e85f5f3 100644
--- a/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java
+++ b/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java
@@ -29,7 +29,7 @@ public class GAESyncTest extends LegacyApplication {
}
@Override
- public void terminalError(com.vaadin.server.ErrorEvent event) {
+ public void error(com.vaadin.server.ErrorEvent event) {
Throwable t = event.getThrowable();
// Was this caused by a GAE timeout?
while (t != null) {
@@ -41,7 +41,7 @@ public class GAESyncTest extends LegacyApplication {
t = t.getCause();
}
- super.terminalError(event);
+ super.error(event);
}