summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-27 11:33:40 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-27 11:35:24 +0100
commit758abf0130d5bc38507c31c2eb5d414a4a27b53b (patch)
tree88a0570b0b8b340273251e839fc7363ebbb07819 /qadevOOo
parent07a58db41301d15523519b99d2c64f1885909cda (diff)
Improve test output
Change-Id: I33b289a31a9a4991eb270b3d154d999fa76c7bb4
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/ifc/accessibility/_XAccessibleText.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleText.java b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleText.java
index 50a803f757e4..63eb4c57828e 100644
--- a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleText.java
+++ b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleText.java
@@ -295,7 +295,7 @@ public class _XAccessibleText extends MultiMethodTest {
}
try {
- log.println("getCharacterAttributes(chCount)");
+ log.println("getCharacterAttributes(chCount = " + chCount + ")");
oObj.getCharacterAttributes(chCount, attr);
log.println("Exception was expected");
res &= false;
@@ -305,7 +305,8 @@ public class _XAccessibleText extends MultiMethodTest {
}
try {
- log.println("getCharacterAttributes(chCount-1)");
+ log.println(
+ "getCharacterAttributes(chCount-1 = " + (chCount - 1) + ")");
PropertyValue[] props = oObj.getCharacterAttributes(chCount - 1,
attr);