summaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/components/button
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2014-03-11 18:54:27 +0200
committerVaadin Code Review <review@vaadin.com>2014-03-11 19:33:39 +0000
commit729b79a737fd2b3ed1c49ec66b3c823393bab017 (patch)
tree5f90ec1b0aa9f1db2ef2ac6f4ae7d44cdccad126 /uitest/src/com/vaadin/tests/components/button
parent4517428d71abadb8cb68de4709f831271f742f28 (diff)
downloadvaadin-framework-729b79a737fd2b3ed1c49ec66b3c823393bab017.tar.gz
vaadin-framework-729b79a737fd2b3ed1c49ec66b3c823393bab017.zip
Fix compilation error in tests (#13446)
Change-Id: Id96c59710173a57a9a7c990a6d8bc9ff49e75906
Diffstat (limited to 'uitest/src/com/vaadin/tests/components/button')
-rw-r--r--uitest/src/com/vaadin/tests/components/button/ButtonsAndIcons.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/tests/components/button/ButtonsAndIcons.java b/uitest/src/com/vaadin/tests/components/button/ButtonsAndIcons.java
index 4ab18e994a..64f690dbf5 100644
--- a/uitest/src/com/vaadin/tests/components/button/ButtonsAndIcons.java
+++ b/uitest/src/com/vaadin/tests/components/button/ButtonsAndIcons.java
@@ -27,7 +27,7 @@ public class ButtonsAndIcons extends TestBase {
b = new Button("Only text");
addComponent(b);
- b = new Button(null);
+ b = new Button((String) null);
b.setIcon(new ThemeResource("../runo/icons/16/ok.png"));
addComponent(b);