This is an automated email from the ASF dual-hosted git repository. cmarcum pushed a commit to branch standalone-test in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/standalone-test by this push: new e83be9d Refs #i128505# - testTableBorderLineStyle() was entering 0.55" instead of 0.50" at line 199 because the ctrl-a wasn't selecting all of the cell contents and leaving a 5 in the cell. then when typing in 0.5 it became 0.55 and failing the assertion at line 222. added sleep at 197 to make sure focus is completed before ctrl-a. new 709c58d Merge pull request #143 from cbmarcum/standalone-test-work e83be9d is described below commit e83be9d674f628e794bfc4b1a4b3b603664fcbfd Author: cbmarcum <carl.mar...@codebuilders.net> AuthorDate: Sun Mar 27 13:20:34 2022 -0400 Refs #i128505# - testTableBorderLineStyle() was entering 0.55" instead of 0.50" at line 199 because the ctrl-a wasn't selecting all of the cell contents and leaving a 5 in the cell. then when typing in 0.5 it became 0.55 and failing the assertion at line 222. added sleep at 197 to make sure focus is completed before ctrl-a. --- test/testgui/source/fvt/gui/sw/table/TableGeneral.java | 1 + 1 file changed, 1 insertion(+) diff --git a/test/testgui/source/fvt/gui/sw/table/TableGeneral.java b/test/testgui/source/fvt/gui/sw/table/TableGeneral.java index 86fdf79..38f02c0 100644 --- a/test/testgui/source/fvt/gui/sw/table/TableGeneral.java +++ b/test/testgui/source/fvt/gui/sw/table/TableGeneral.java @@ -194,6 +194,7 @@ public class TableGeneral { swTableSTCSYNC.uncheck(); // set left spacing to content swTableSTCLeft.focus(); + sleep(0.2); typeKeys("<ctrl a>"); typeKeys("<delete>"); typeKeys("0.5");