summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-09-26 09:39:28 +0300
committerLeif Åstrand <leif@vaadin.com>2012-09-26 13:06:47 +0300
commit157f43c5517cda5211470e9c483ce1a80be38269 (patch)
tree34df0ec3649437d566284248ae63d23c83304b46
parent2f102d4c2397b9d74bd3dce6b810935d2d7f004a (diff)
downloadvaadin-framework-157f43c5517cda5211470e9c483ce1a80be38269.tar.gz
vaadin-framework-157f43c5517cda5211470e9c483ce1a80be38269.zip
Update test to not use red for success.
-rw-r--r--uitest/src/com/vaadin/tests/components/ui/TestUITheme.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/uitest/src/com/vaadin/tests/components/ui/TestUITheme.java b/uitest/src/com/vaadin/tests/components/ui/TestUITheme.java
index 1a5db630b3..bfed424483 100644
--- a/uitest/src/com/vaadin/tests/components/ui/TestUITheme.java
+++ b/uitest/src/com/vaadin/tests/components/ui/TestUITheme.java
@@ -10,14 +10,14 @@ public class TestUITheme extends AbstractTestUI {
@Override
protected void setup(VaadinRequest request) {
- Label label = new Label("A red label");
- label.setStyleName("red");
+ Label label = new Label("A green label");
+ label.setStyleName("green");
addComponent(label);
}
@Override
public String getTestDescription() {
- return "UI with @Theme(\"tests-tickets\")";
+ return "UI with @Theme(\"tests-tickets\"). The label uses a stylename that should only be defined in the test-tickets theme.";
}
@Override