summaryrefslogtreecommitdiff
path: root/sw/qa/complex/writer/TextPortionEnumerationTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'sw/qa/complex/writer/TextPortionEnumerationTest.java')
-rwxr-xr-xsw/qa/complex/writer/TextPortionEnumerationTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/complex/writer/TextPortionEnumerationTest.java b/sw/qa/complex/writer/TextPortionEnumerationTest.java
index a07b3cccadef..8110c82a6e58 100755
--- a/sw/qa/complex/writer/TextPortionEnumerationTest.java
+++ b/sw/qa/complex/writer/TextPortionEnumerationTest.java
@@ -3097,7 +3097,7 @@ public class TextPortionEnumerationTest extends ComplexTestCase
XPropertySet xPropSet = (XPropertySet)
UnoRuntime.queryInterface(XPropertySet.class, xPortion);
String type = (String) xPropSet.getPropertyValue("TextPortionType");
- assure("first: not text", type.equals("Text"));
+ assure("first: not text: " + type, type.equals("Text"));
String txt = xPortion.getString();
assure("first: text differs: " + txt, "45".equals(txt));
}