aboutsummaryrefslogtreecommitdiffstats
path: root/server/tests/src
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-09-06 11:41:22 +0300
committerLeif Åstrand <leif@vaadin.com>2012-09-06 11:41:22 +0300
commita6688c9362d8f2d87b8334b21ecf966789900ceb (patch)
tree4b68787eae5fe605ea73bc544ef4d025d5d4f26c /server/tests/src
parent201121c5e00ee78d85add849f8b071fce076cc0d (diff)
downloadvaadin-framework-a6688c9362d8f2d87b8334b21ecf966789900ceb.tar.gz
vaadin-framework-a6688c9362d8f2d87b8334b21ecf966789900ceb.zip
Remove some references to Application in API and docs (#9402)
Diffstat (limited to 'server/tests/src')
-rw-r--r--server/tests/src/com/vaadin/tests/server/component/root/CustomUIClassLoader.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/tests/src/com/vaadin/tests/server/component/root/CustomUIClassLoader.java b/server/tests/src/com/vaadin/tests/server/component/root/CustomUIClassLoader.java
index 707eb577cc..26e6dd7bd7 100644
--- a/server/tests/src/com/vaadin/tests/server/component/root/CustomUIClassLoader.java
+++ b/server/tests/src/com/vaadin/tests/server/component/root/CustomUIClassLoader.java
@@ -13,7 +13,7 @@ import com.vaadin.server.DeploymentConfiguration;
import com.vaadin.server.DefaultUIProvider;
import com.vaadin.server.VaadinService;
import com.vaadin.server.VaadinSession;
-import com.vaadin.server.VaadinSession.ApplicationStartEvent;
+import com.vaadin.server.VaadinSession.SessionStartEvent;
import com.vaadin.server.WrappedRequest;
import com.vaadin.ui.UI;
@@ -54,7 +54,7 @@ public class CustomUIClassLoader extends TestCase {
*/
public void testWithNullClassLoader() throws Exception {
VaadinSession application = createStubApplication();
- application.start(new ApplicationStartEvent(null,
+ application.start(new SessionStartEvent(null,
createConfigurationMock(), null));
DefaultUIProvider uiProvider = new DefaultUIProvider();
@@ -98,7 +98,7 @@ public class CustomUIClassLoader extends TestCase {
LoggingClassLoader loggingClassLoader = new LoggingClassLoader();
VaadinSession application = createStubApplication();
- application.start(new ApplicationStartEvent(null,
+ application.start(new SessionStartEvent(null,
createConfigurationMock(), null));
DefaultUIProvider uiProvider = new DefaultUIProvider();