diff options
author | Artur Signell <artur@vaadin.com> | 2015-06-24 11:29:50 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-06-26 07:54:06 +0000 |
commit | 7355f1a26277d7644cfc974f4c4d8b7bc898c366 (patch) | |
tree | 281633f608a704bbaaa8b564d3b55c422b2811be /uitest/src/com/vaadin/tests/themes | |
parent | afefa100a75760a05519038e19e6b64669411549 (diff) | |
download | vaadin-framework-7355f1a26277d7644cfc974f4c4d8b7bc898c366.tar.gz vaadin-framework-7355f1a26277d7644cfc974f4c4d8b7bc898c366.zip |
Reformat with Luna SR2
Change-Id: I8a666061496022ef16ed44812b5728e1360b9c4d
Diffstat (limited to 'uitest/src/com/vaadin/tests/themes')
-rw-r--r-- | uitest/src/com/vaadin/tests/themes/valo/NotificationStyleTest.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/uitest/src/com/vaadin/tests/themes/valo/NotificationStyleTest.java b/uitest/src/com/vaadin/tests/themes/valo/NotificationStyleTest.java index b2db29443a..7adae9ce65 100644 --- a/uitest/src/com/vaadin/tests/themes/valo/NotificationStyleTest.java +++ b/uitest/src/com/vaadin/tests/themes/valo/NotificationStyleTest.java @@ -66,11 +66,10 @@ public class NotificationStyleTest extends MultiBrowserTest { WebElement description = notification.findElement(By .className("v-Notification-description")); String display = description.getCssValue("display"); - String displayP2 = notification.findElement( - By.className("tested-p")).getCssValue("display"); + String displayP2 = notification.findElement(By.className("tested-p")) + .getCssValue("display"); Assert.assertNotEquals("Styles for notification defined 'p' tag " - + "and custom HTML tag are the same", display, - displayP2); + + "and custom HTML tag are the same", display, displayP2); } private ExpectedCondition<Boolean> notificationPresentCondition() { |