summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2015-01-07 15:58:40 +0200
committerVaadin Code Review <review@vaadin.com>2015-01-07 16:36:48 +0000
commit20ed8b863d24f48afab5d510f5caf1fbdadeeb19 (patch)
treea4fa45fa2694f3411b9acb008767d4b702091beb /uitest
parentab6cb8ed35a1b5f1d301d359e75e9e0e4f758f24 (diff)
downloadvaadin-framework-20ed8b863d24f48afab5d510f5caf1fbdadeeb19.tar.gz
vaadin-framework-20ed8b863d24f48afab5d510f5caf1fbdadeeb19.zip
Change getColumnProperty to getPropertyId in Grid Column (#15512)
Change-Id: I89a8ccbb918301abed66adcb0d6246c8db0585a5
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/com/vaadin/tests/components/grid/GridColumnExpand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/tests/components/grid/GridColumnExpand.java b/uitest/src/com/vaadin/tests/components/grid/GridColumnExpand.java
index eb0c14ae41..f8338f991a 100644
--- a/uitest/src/com/vaadin/tests/components/grid/GridColumnExpand.java
+++ b/uitest/src/com/vaadin/tests/components/grid/GridColumnExpand.java
@@ -151,7 +151,7 @@ public class GridColumnExpand extends AbstractTestUI {
double minimumWidth = Math.round(column.getMinimumWidth() * 100) / 100;
double maximumWidth = Math.round(column.getMaximumWidth() * 100) / 100;
double width = Math.round(column.getWidth() * 100) / 100;
- Object propertyId = column.getColumnProperty();
+ Object propertyId = column.getPropertyId();
label.setValue(String.format(
"[%s] Expand ratio: %s - min: %s - max: %s - width: %s",
propertyId, expandRatio, minimumWidth, maximumWidth, width));