Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.ua.tests/data/intro/staticroot/introContent_expected.txt2
-rw-r--r--org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/util/IntroModelSerializer.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.ua.tests/data/intro/staticroot/introContent_expected.txt b/org.eclipse.ua.tests/data/intro/staticroot/introContent_expected.txt
index a0ccd6919..4ff50ee5e 100644
--- a/org.eclipse.ua.tests/data/intro/staticroot/introContent_expected.txt
+++ b/org.eclipse.ua.tests/data/intro/staticroot/introContent_expected.txt
@@ -15,7 +15,7 @@ HOME PAGE:
title = null
style = null
alt-style = null
- url = file:///E:/EclipseWorkspaces/U/org.eclipse.ua.tests/data/intro/html/static1.html
+ url = file:/<filtered>/static1.html
style-id = null
page styles are =
page alt-styles are =
diff --git a/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/util/IntroModelSerializer.java b/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/util/IntroModelSerializer.java
index 5c4112a8d..fa25b1236 100644
--- a/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/util/IntroModelSerializer.java
+++ b/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/util/IntroModelSerializer.java
@@ -99,7 +99,7 @@ public class IntroModelSerializer {
text.append("\n\ttitle = " + rootPage.getTitle()); //$NON-NLS-1$
text.append("\n\tstyle = " + filterURL(rootPage.getStyle())); //$NON-NLS-1$
text.append("\n\talt-style = " + filterURL(rootPage.getAltStyle())); //$NON-NLS-1$
- text.append("\n\turl = " + rootPage.getUrl()); //$NON-NLS-1$
+ text.append("\n\turl = " + filterURL(rootPage.getUrl())); //$NON-NLS-1$
text.append("\n\tstyle-id = " + rootPage.getStyleId()); //$NON-NLS-1$
printPageStyles(rootPage, text);
}

Back to the top