summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-10-31 14:30:16 +0200
committerArtur Signell <artur@vaadin.com>2013-10-31 14:30:27 +0200
commit137642958a62dfc081e2b7242318f8ce4ef59304 (patch)
tree4a0a76fe6cb2704020754c4969383aec17313f72
parenta5a91311e9941cc4db775d6edb58781ca435b022 (diff)
downloadvaadin-framework-137642958a62dfc081e2b7242318f8ce4ef59304.tar.gz
vaadin-framework-137642958a62dfc081e2b7242318f8ce4ef59304.zip
Fix compilation error in test
Change-Id: I1ad693fdc55becd4b4e620b8549d824b4496b908
-rw-r--r--uitest/src/com/vaadin/tests/layouts/layouttester/LayoutTesterApplication.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/tests/layouts/layouttester/LayoutTesterApplication.java b/uitest/src/com/vaadin/tests/layouts/layouttester/LayoutTesterApplication.java
index ef092d2539..5b68e04144 100644
--- a/uitest/src/com/vaadin/tests/layouts/layouttester/LayoutTesterApplication.java
+++ b/uitest/src/com/vaadin/tests/layouts/layouttester/LayoutTesterApplication.java
@@ -114,7 +114,7 @@ public class LayoutTesterApplication extends AbstractTestCase {
private NativeSelect getLayoutTypeSelect() {
if (layoutSelector == null) {
layoutSelector = new NativeSelect();
- layoutSelector.setId(LAYOUT_SELECT);
+ layoutSelector.setId(LAYOUT_SELECT_ID);
layoutSelector.addItem(VerticalLayout.class);
layoutSelector.addItem(HorizontalLayout.class);
layoutSelector.addItem(GridLayout.class);