diff options
author | dennisroczek <dennisroczek@libreoffice.org> | 2017-03-10 18:51:36 +0000 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-11 11:09:04 +0000 |
commit | 809d136e741891488409df670384e2663006b020 (patch) | |
tree | a99c6bd787e8db2637d654e62137821f168d130c | |
parent | cb508b7faa8347dda4eea837af0dd36a246c572d (diff) |
fix typo: exptected --> expected
Change-Id: Ibefaed54c8fdce22fbae0116b4df5db4023ef7d6
Reviewed-on: https://gerrit.libreoffice.org/35057
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java b/qadevOOo/tests/java/ifc/beans/_XPropertyAccess.java index a2faae3de7e5..10c26002e58e 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; |