diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-03-28 12:58:32 +0200 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2014-03-28 14:17:30 +0200 |
commit | c9eb8566b6671abe8d87f09a7541e7ddeb656c44 (patch) | |
tree | 89d9eff4e35d0a162e56a58521b79336b3187fc6 /uitest/src/com | |
parent | 7082a94eb08aad2995e0d7c585b1196cbe0264c4 (diff) | |
download | vaadin-framework-c9eb8566b6671abe8d87f09a7541e7ddeb656c44.tar.gz vaadin-framework-c9eb8566b6671abe8d87f09a7541e7ddeb656c44.zip |
Removed firefox from SelectAllRowsTest.
Change-Id: I00680fcf48472bea5b85cbdcc91d8d6ba977c482
Diffstat (limited to 'uitest/src/com')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/table/SelectAllRowsTest.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/uitest/src/com/vaadin/tests/components/table/SelectAllRowsTest.java b/uitest/src/com/vaadin/tests/components/table/SelectAllRowsTest.java index 664b36fa75..25aa621e32 100644 --- a/uitest/src/com/vaadin/tests/components/table/SelectAllRowsTest.java +++ b/uitest/src/com/vaadin/tests/components/table/SelectAllRowsTest.java @@ -21,7 +21,6 @@ import static com.vaadin.tests.components.table.SelectAllRows.TABLE; import static com.vaadin.tests.components.table.SelectAllRows.TOTAL_NUMBER_OF_ROWS; import static org.junit.Assert.assertEquals; -import java.util.Arrays; import java.util.List; import org.junit.Test; @@ -41,8 +40,11 @@ public class SelectAllRowsTest extends MultiBrowserTest { public List<DesiredCapabilities> getBrowsersToTest() { // Pressing Shift modifier key does not work with TestBench and IE // (#8621) - return Arrays.asList(Browser.FIREFOX.getDesiredCapabilities(), - Browser.CHROME.getDesiredCapabilities()); + + List<DesiredCapabilities> browsers = super.getBrowsersToTest(); + browsers.remove(Browser.FIREFOX.getDesiredCapabilities()); + + return browsers; } @Test |