uitest/mass-testing/calc.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-)
New commits: commit d9956b1c24f5b8947ae9f1c544330cea497cdb7c Author: Xisco Fauli <xiscofa...@libreoffice.org> AuthorDate: Wed Jun 15 07:29:50 2022 +0200 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Wed Jun 15 07:30:55 2022 +0200 mass-testing: just copy and undo once Otherwise, it might cause memory problems with some sheets Change-Id: I5ac0f45c8b15833453ec1fe5ce39607d1f749f40 diff --git a/uitest/mass-testing/calc.py b/uitest/mass-testing/calc.py index 580a99a..ed11b82 100755 --- a/uitest/mass-testing/calc.py +++ b/uitest/mass-testing/calc.py @@ -97,11 +97,9 @@ class massTesting(UITestCase): self.xUITest.executeCommand(".uno:Copy") - for i in range(5): - self.xUITest.executeCommand(".uno:Paste") + self.xUITest.executeCommand(".uno:Paste") - for i in range(5): - self.xUITest.executeCommand(".uno:Undo") + self.xUITest.executeCommand(".uno:Undo") self.xUITest.executeCommand(".uno:JumpToNextTable")