summaryrefslogtreecommitdiffstats
path: root/uitest/src/test
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>2017-08-16 12:53:57 +0300
committerHenri Sara <henri.sara@gmail.com>2017-08-16 12:53:57 +0300
commitdf9522213560171e8a623cea31d824a52dea5dfa (patch)
treea28b050dc6859e3f5dff3fcdc6b4b2a099f197b4 /uitest/src/test
parent0f64ae445bae3c6e7a0d7fee1b6db9717e3da59a (diff)
downloadvaadin-framework-df9522213560171e8a623cea31d824a52dea5dfa.tar.gz
vaadin-framework-df9522213560171e8a623cea31d824a52dea5dfa.zip
Revert Grid row height per section feature (#9823)8.1.2
Revert changes for #9425 (PRs #9810 and #9813) in the 8.1 branch. This reverts commit bda7e54cb6eadddf07fb19d88479c642c4831a66. This reverts commit 1f878089dec6c03090efbcc79b08edbfbffb7620.
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");