Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis D'Entremont2006-03-28 00:04:08 +0000
committerCurtis D'Entremont2006-03-28 00:04:08 +0000
commit00f34df469506f27923247657278c2d14f4e83cf (patch)
treeea63653bd38a724a8cbefdc9a75dc574c457cb34 /org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/toc
parent2d87dded5e13b9da3bbadcac10ecefa02ee59a94 (diff)
downloadeclipse.platform.ua-00f34df469506f27923247657278c2d14f4e83cf.tar.gz
eclipse.platform.ua-00f34df469506f27923247657278c2d14f4e83cf.tar.xz
eclipse.platform.ua-00f34df469506f27923247657278c2d14f4e83cf.zip
132251 New: NOT function on filters
Diffstat (limited to 'org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/toc')
-rw-r--r--org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/toc/ParserTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/toc/ParserTest.java b/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/toc/ParserTest.java
index 2bdb831fa..d8ede3fcf 100644
--- a/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/toc/ParserTest.java
+++ b/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/toc/ParserTest.java
@@ -65,7 +65,7 @@ public class ParserTest extends TestCase {
*/
if (relativePath.startsWith("data/help/toc/")) {
try {
- String expected = FileUtil.getResultFileContents(bundle, relativePath);
+ String expected = FileUtil.getContents(bundle, FileUtil.getResultFile(relativePath));
String actual = TocModelSerializer.serialize(toc);
Assert.assertEquals("Serialized toc model for " + relativePath + " did not match the expected result", expected, actual);
}

Back to the top