summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHenschi <to@h6l.de>2025-04-03 20:50:58 +0200
committerHenschi <to@h6l.de>2025-04-03 20:50:58 +0200
commit5b6a8520ddf30c29a0895dfaffcc04d2812b5138 (patch)
tree326c98b0ec56ea5f29e102219dbada1e62a000fe /test
parent332a42be72c871d85468a5846b2edecbc91b5080 (diff)
fix test values because title in windows and mac PPT is not empty or null
Diffstat (limited to 'test')
-rw-r--r--test/java/net/yacy/document/ParserTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/java/net/yacy/document/ParserTest.java b/test/java/net/yacy/document/ParserTest.java
index 9bf49969b..f73193c93 100644
--- a/test/java/net/yacy/document/ParserTest.java
+++ b/test/java/net/yacy/document/ParserTest.java
@@ -195,8 +195,8 @@ public class ParserTest {
final String[][] testFiles = new String[][]{
// meaning: filename in test/parsertest, mimetype, title, creator, description,
new String[]{"umlaute_linux.ppt", "application/powerpoint", "In München steht ein Hofbräuhaus, dort gibt es Bier in Maßkrügen", "", ""},
- new String[]{"umlaute_windows.ppt", "application/powerpoint", "In München steht ein Hofbräuhaus, dort gibt es Bier in Maßkrügen", "afieg", ""},
- new String[]{"umlaute_mac.ppt", "application/powerpoint", "In München steht ein Hofbräuhaus, dort gibt es Bier in Maßkrügen", "Bob", ""}
+ new String[]{"umlaute_windows.ppt", "application/powerpoint", "Folie 1", "afieg", ""},
+ new String[]{"umlaute_mac.ppt", "application/powerpoint", "Slide 1", "Bob", ""}
};
for (final String[] testFile : testFiles) {