diff options
author | Denis Anisimov <denis@vaadin.com> | 2014-11-15 16:49:09 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2016-02-29 12:49:43 +0000 |
commit | 4ee39c397a85618e65d2e5dcd3ec556569a73719 (patch) | |
tree | 5f5609f5e4a4557aed759eab21e694feb138af2c /uitest/src/com/vaadin/tests/components/AbstractLayoutTest.java | |
parent | 116a51cc9cd00c9314a24a342f1f741ad76973b1 (diff) | |
download | vaadin-framework-4ee39c397a85618e65d2e5dcd3ec556569a73719.tar.gz vaadin-framework-4ee39c397a85618e65d2e5dcd3ec556569a73719.zip |
MarginInfo CTOR with two booleans: vertical, horizontal (#14113).
Change-Id: Iad15b95abeb24e7dd1e06b1d9f70844cb061cb49
Diffstat (limited to 'uitest/src/com/vaadin/tests/components/AbstractLayoutTest.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/AbstractLayoutTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/components/AbstractLayoutTest.java b/uitest/src/com/vaadin/tests/components/AbstractLayoutTest.java index c04be3d724..56c04180b8 100644 --- a/uitest/src/com/vaadin/tests/components/AbstractLayoutTest.java +++ b/uitest/src/com/vaadin/tests/components/AbstractLayoutTest.java @@ -63,8 +63,8 @@ public abstract class AbstractLayoutTest<T extends AbstractLayout> extends options.put("right", new MarginInfo(false, true, false, false)); options.put("top", new MarginInfo(true, false, false, false)); options.put("bottom", new MarginInfo(false, false, true, false)); - options.put("left-right", new MarginInfo(false, true, false, true)); - options.put("top-bottom", new MarginInfo(true, false, true, false)); + options.put("left-right", new MarginInfo(false, true)); + options.put("top-bottom", new MarginInfo(true, false)); createSelectAction("Margins", category, options, "off", marginCommand); } |