Browse Source

Improved error login in GridColumnResizeModeTest. (#12350)

tags/8.14.0.alpha1
Anna Koskinen 2 years ago
parent
commit
6497dff12b
No account linked to committer's email address

+ 5
- 2
uitest/src/test/java/com/vaadin/tests/components/grid/basicfeatures/GridColumnResizeModeTest.java View File

@@ -103,8 +103,11 @@ public class GridColumnResizeModeTest extends GridBasicsTest {

// ANIMATED resize mode
drag(handle, 100);
assertTrue("Expected width: " + cell.getSize().getWidth(),
getLogRow(0).contains("Column resized: caption=Column 1, width="
String logRow = getLogRow(0);
assertTrue(
"Expected width: " + cell.getSize().getWidth()
+ ", latest log row: " + logRow,
logRow.contains("Column resized: caption=Column 1, width="
+ cell.getSize().getWidth()));

drag(handle, -100);

Loading…
Cancel
Save