summaryrefslogtreecommitdiffstats
path: root/uitest/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/src/test')
-rw-r--r--uitest/src/test/java/com/vaadin/tests/components/grid/basics/GridRowHeightTest.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/uitest/src/test/java/com/vaadin/tests/components/grid/basics/GridRowHeightTest.java b/uitest/src/test/java/com/vaadin/tests/components/grid/basics/GridRowHeightTest.java
index c99c31d4f7..73811bddc7 100644
--- a/uitest/src/test/java/com/vaadin/tests/components/grid/basics/GridRowHeightTest.java
+++ b/uitest/src/test/java/com/vaadin/tests/components/grid/basics/GridRowHeightTest.java
@@ -6,26 +6,6 @@ import org.junit.Test;
public class GridRowHeightTest extends GridBasicsTest {
@Test
- public void testSeparateRowHeights() {
- selectMenuPath("Component", "Footer", "Add default footer row");
-
- int initialHeaderHeight = getHeaderHeight();
-
- Assert.assertNotEquals("Header height should not be 50px initially", 50,
- initialHeaderHeight);
-
- selectMenuPath("Component", "Body rows", "Body Row Height", "" + 100);
- selectMenuPath("Component", "Header", "Header Row Height", "" + 20);
- selectMenuPath("Component", "Footer", "Footer Row Height", "" + 50);
-
- checkRowHeights(20, 100, 50);
-
- selectMenuPath("Component", "Header", "Header Row Height", "" + -1);
-
- checkRowHeights(initialHeaderHeight, 100, 50);
- }
-
- @Test
public void testRowHeights() {
selectMenuPath("Component", "Footer", "Add default footer row");