summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/awt/tree/_XMutableTreeNode.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/awt/tree/_XMutableTreeNode.java')
-rw-r--r--qadevOOo/tests/java/ifc/awt/tree/_XMutableTreeNode.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/tests/java/ifc/awt/tree/_XMutableTreeNode.java b/qadevOOo/tests/java/ifc/awt/tree/_XMutableTreeNode.java
index 7a3a596c8bcc..f8ca31c03285 100644
--- a/qadevOOo/tests/java/ifc/awt/tree/_XMutableTreeNode.java
+++ b/qadevOOo/tests/java/ifc/awt/tree/_XMutableTreeNode.java
@@ -140,7 +140,7 @@ public class _XMutableTreeNode extends MultiMethodTest {
log.println("ERROR: expected IndexOutOfBoundsException was not thrown => FAILED");
bOK = false;
} catch (com.sun.star.lang.IllegalArgumentException ex) {
- log.println("ERROR: wrong IllegalArgumentException was thrown. Expeced is IndexOutOfBoundsException => FAILED");
+ log.println("ERROR: wrong IllegalArgumentException was thrown. Expected is IndexOutOfBoundsException => FAILED");
bOK = false;
} catch (com.sun.star.lang.IndexOutOfBoundsException ex) {
log.println("Expected IndexOutOfBoundsException was thrown => OK");
@@ -177,7 +177,7 @@ public class _XMutableTreeNode extends MultiMethodTest {
try {
log.println("try to remove node at invalid index '-3'");
oObj.removeChildByIndex(-3);
- log.println("ERROR: expeced IndexOutOfBoundsException was not thrown => FAILED");
+ log.println("ERROR: expected IndexOutOfBoundsException was not thrown => FAILED");
bOK = false;
} catch (com.sun.star.lang.IndexOutOfBoundsException ex) {
log.println("expected IndexOutOfBoundsException was thrown => OK");