diff options
-rw-r--r-- | qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java b/qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java index 0816a0defeaa..bc2a2ed228b9 100644 --- a/qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java +++ b/qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java @@ -120,6 +120,11 @@ public class _XMessageBoxFactory extends MultiMethodTest { } } } + try { + Thread.currentThread().sleep(500); + } catch(InterruptedException e) { + throw new RuntimeException(e); + } UITools oUITools = new UITools( (XMultiServiceFactory) tParam.getMSF(), UnoRuntime.queryInterface(XWindow.class, messageBox)); |