diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-09-10 10:36:47 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-09-10 11:56:52 +0200 |
commit | fce010450534e6992345f5df7b9d9665befb7c6e (patch) | |
tree | 9c5d1bde7db671a95ee47b3191e83da08f9e7e44 /framework/qa | |
parent | 2acafef57153bfa1ade59e887a55457ba677b976 (diff) |
Fix typos
Change-Id: Ibc1b7393a8e65bf23c78fdb9da78c6b73b544cf3
Reviewed-on: https://gerrit.libreoffice.org/78793
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'framework/qa')
-rw-r--r-- | framework/qa/complex/framework/recovery/RecoveryTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qa/complex/framework/recovery/RecoveryTest.java b/framework/qa/complex/framework/recovery/RecoveryTest.java index 5c95e3bdc659..2f5882899bfa 100644 --- a/framework/qa/complex/framework/recovery/RecoveryTest.java +++ b/framework/qa/complex/framework/recovery/RecoveryTest.java @@ -530,7 +530,7 @@ public class RecoveryTest extends ComplexTestCase { int height = rand.nextInt(maxHeight + 1); int width = rand.nextInt((windowMaxSize.Width-posSize.Y) + 1); - // be sure that the new size his greater then the half of windowMaxSize + // be sure that the new size his greater than the half of windowMaxSize posSize.Height = (height < (maxHeight / 2)) ? height + (maxHeight / 2) : height; posSize.Width = (width < (maxWidth / 2)) ? width + (maxWidth / 2) : width; |