From 8941056349e302e687e40e94c13709e75f256d73 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Thu, 30 Aug 2012 17:02:08 +0300 Subject: Reformatted project --- .../vaadin/data/util/sqlcontainer/ColumnPropertyTest.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'server/tests/src/com') diff --git a/server/tests/src/com/vaadin/data/util/sqlcontainer/ColumnPropertyTest.java b/server/tests/src/com/vaadin/data/util/sqlcontainer/ColumnPropertyTest.java index 09f620cc2a..7cad310d37 100644 --- a/server/tests/src/com/vaadin/data/util/sqlcontainer/ColumnPropertyTest.java +++ b/server/tests/src/com/vaadin/data/util/sqlcontainer/ColumnPropertyTest.java @@ -58,8 +58,8 @@ public class ColumnPropertyTest { @Test(expected = ReadOnlyException.class) public void setValue_readOnlyNullable_shouldFail() { - ColumnProperty cp = new ColumnProperty("NAME", true, true, true, - false, "Ville", String.class); + ColumnProperty cp = new ColumnProperty("NAME", true, true, true, false, + "Ville", String.class); SQLContainer container = EasyMock.createMock(SQLContainer.class); new RowItem(container, new RowId(new Object[] { 1 }), Arrays.asList(cp)); EasyMock.replay(container); @@ -111,8 +111,8 @@ public class ColumnPropertyTest { @Test public void isReadOnly_readOnlyNullable_returnsTrue() { - ColumnProperty cp = new ColumnProperty("NAME", true, true, true, - false, "Ville", String.class); + ColumnProperty cp = new ColumnProperty("NAME", true, true, true, false, + "Ville", String.class); Assert.assertTrue(cp.isReadOnly()); } @@ -173,8 +173,8 @@ public class ColumnPropertyTest { @Test public void setValue_resetTonullOnNullable_shouldWork() { - ColumnProperty cp = new ColumnProperty("NAME", false, true, true, false, - null, String.class); + ColumnProperty cp = new ColumnProperty("NAME", false, true, true, + false, null, String.class); SQLContainer container = EasyMock.createMock(SQLContainer.class); new RowItem(container, new RowId(new Object[] { 1 }), Arrays.asList(cp)); cp.setValue("asdf"); -- cgit v1.2.3