diff options
author | Teppo Kurki <teppo.kurki@vaadin.com> | 2015-06-08 23:49:16 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-06-09 08:25:42 +0000 |
commit | a1c8305412cfc52a67c9ab80703ddb064104a858 (patch) | |
tree | 63c469586717028153175af7aa5684f35685a82d /uitest | |
parent | 94a943baaef07fd5a9d2e7a5b317ffcc297a1f10 (diff) | |
download | vaadin-framework-a1c8305412cfc52a67c9ab80703ddb064104a858.tar.gz vaadin-framework-a1c8305412cfc52a67c9ab80703ddb064104a858.zip |
Rename grid sidebar 'opened' style to 'open' (#18120)
Change-Id: Ifbd791c45bf0a4b62e6e73195c73c4f0f3bddad0
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridColumnHidingTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridColumnHidingTest.java b/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridColumnHidingTest.java index bed8db6f47..a307aaca16 100644 --- a/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridColumnHidingTest.java +++ b/uitest/src/com/vaadin/tests/components/grid/basicfeatures/GridColumnHidingTest.java @@ -1012,12 +1012,12 @@ public class GridColumnHidingTest extends GridBasicClientFeaturesTest { private void verifySidebarOpened() { WebElement sidebar = getSidebar(); - assertTrue(sidebar.getAttribute("class").contains("opened")); + assertTrue(sidebar.getAttribute("class").contains("open")); } private void verifySidebarClosed() { WebElement sidebar = getSidebar(); - assertFalse(sidebar.getAttribute("class").contains("opened")); + assertFalse(sidebar.getAttribute("class").contains("open")); } private void verifySidebarNotVisible() { |