qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java |   16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 809d136e741891488409df670384e2663006b020
Author: dennisroczek <dennisroc...@libreoffice.org>
Date:   Fri Mar 10 18:51:36 2017 +0000

    fix typo: exptected --> expected
    
    Change-Id: Ibefaed54c8fdce22fbae0116b4df5db4023ef7d6
    Reviewed-on: https://gerrit.libreoffice.org/35057
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>

diff --git a/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java 
b/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java
index a2faae3..10c2600 100644
--- a/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java
+++ b/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java
@@ -150,20 +150,20 @@ public class _XPropertyAccess extends MultiMethodTest {
             newProps[0] = failedProp;
             oObj.setPropertyValues(newProps);
         } catch (PropertyVetoException ex) {
-            log.println("ERROR: unexptected exception was thrown while trying 
to set null value: " +
+            log.println("ERROR: unexpected exception was thrown while trying 
to set null value: " +
                 ex.toString());
             exp = true;
         } catch (WrappedTargetException ex) {
-            log.println("ERROR: unexptected exception was thrown while trying 
to set null value: " +
+            log.println("ERROR: unexpected exception was thrown while trying 
to set null value: " +
                 ex.toString());
             exp = true;
         } catch (com.sun.star.lang.IllegalArgumentException ex) {
-            log.println("OK: exptected exception was thrown while trying to 
set null value: " +
+            log.println("OK: expected exception was thrown while trying to set 
null value: " +
                 ex.toString());
             test = true;
             exp = true;
         } catch (UnknownPropertyException ex) {
-            log.println("ERROR: unexptected exception was thrown while trying 
to set null value: " +
+            log.println("ERROR: unexpected exception was thrown while trying 
to set null value: " +
                 ex.toString());
             exp = true;
         }
@@ -191,19 +191,19 @@ public class _XPropertyAccess extends MultiMethodTest {
             oObj.setPropertyValues(newProps);
 
         } catch (WrappedTargetException ex) {
-            log.println("ERROR: unexptected exception was thrown while trying 
to set invalid value: " +
+            log.println("ERROR: unexpected exception was thrown while trying 
to set invalid value: " +
                 ex.toString());
             exp = true;
         } catch (com.sun.star.lang.IllegalArgumentException ex) {
-            log.println("ERROR: unexptected exception was thrown while trying 
to set invalid value: " +
+            log.println("ERROR: unexpected exception was thrown while trying 
to set invalid value: " +
                 ex.toString());
             exp = true;
         } catch (PropertyVetoException ex) {
-            log.println("ERROR: unexptected exception was thrown while trying 
to set invalid value: " +
+            log.println("ERROR: unexpected exception was thrown while trying 
to set invalid value: " +
                 ex.toString());
             exp = true;
         } catch (UnknownPropertyException ex) {
-            log.println("OK: Exptected exception was thrown while trying to 
set invalid value: " +
+            log.println("OK: Expected exception was thrown while trying to set 
invalid value: " +
                 ex.toString());
             exp = true;
             test = true;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to