summaryrefslogtreecommitdiffstats
path: root/server/tests/src/com/vaadin/ui
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-09-28 14:22:00 +0300
committerLeif Åstrand <leif@vaadin.com>2012-09-28 14:22:00 +0300
commit9d73de5162b57e85dba00ca8c5f3ebf47b4ed240 (patch)
tree92eea42da9c7624a63df3c1b7a5b7f3c91fafb0b /server/tests/src/com/vaadin/ui
parentaf8fb8ddd2ab54c08a8ac2c120a8d357c98057ec (diff)
downloadvaadin-framework-9d73de5162b57e85dba00ca8c5f3ebf47b4ed240.tar.gz
vaadin-framework-9d73de5162b57e85dba00ca8c5f3ebf47b4ed240.zip
Ensure there's a service for each session (#9733)
Change-Id: I9425c2d33fd09759b18930741344e9181dc79364
Diffstat (limited to 'server/tests/src/com/vaadin/ui')
-rw-r--r--server/tests/src/com/vaadin/ui/LabelDataSource.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tests/src/com/vaadin/ui/LabelDataSource.java b/server/tests/src/com/vaadin/ui/LabelDataSource.java
index 30295553a2..506a635814 100644
--- a/server/tests/src/com/vaadin/ui/LabelDataSource.java
+++ b/server/tests/src/com/vaadin/ui/LabelDataSource.java
@@ -39,7 +39,7 @@ public class LabelDataSource {
@Before
public void setup() {
- vaadinSession = new VaadinServiceSession();
+ vaadinSession = new VaadinServiceSession(null);
VaadinServiceSession.setCurrent(vaadinSession);
label = new Label();