Ver código fonte

Improved error login in GridColumnResizeModeTest. (#12350)

tags/8.14.0.alpha1
Anna Koskinen 2 anos atrás
pai
commit
6497dff12b
Nenhuma conta vinculada ao e-mail do autor do commit

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



// ANIMATED resize mode // ANIMATED resize mode
drag(handle, 100); 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())); + cell.getSize().getWidth()));


drag(handle, -100); drag(handle, -100);

Carregando…
Cancelar
Salvar