| author | wangfcdl | 2013-01-04 08:07:35 (EST) |
|---|---|---|
| committer | wangfcdl | 2013-01-04 08:07:35 (EST) |
| commit | 616885d38ab200eeaeafbb6702ef03c692b8c304 (patch) (side-by-side diff) | |
| tree | c18dd4107ae53833fad16c36960a6a047ce156c1 | |
| parent | f7958892eacf1051bcfdb73f5572721ece454775 (diff) | |
| download | org.eclipse.lyo.testsuite-616885d38ab200eeaeafbb6702ef03c692b8c304.zip org.eclipse.lyo.testsuite-616885d38ab200eeaeafbb6702ef03c692b8c304.tar.gz org.eclipse.lyo.testsuite-616885d38ab200eeaeafbb6702ef03c692b8c304.tar.bz2 | |
BugĀ 397315 - "<..>" in troubleshooting.xml could cause validation errorrefs/changes/90/9490/1
When running "validate" on "/assessment/cm/support/troubleshooting.xml",
an error "The value of attribute "regexp" associated with an element
type "error" must not contain the '<' character." reported on line,
<error type="AppBehavior" regexp="expected:<400> but was:<500>">
<rootcause>Product Defect</rootcause>
<action>Submit defect against the OSLC provider</action>
</error>
It is caused by the "<" in regexp="expected:<400> but was:<500>".
Updating it as regexp="expected:<400> but was:<500>" can fix
the problem.
Change-Id: I0a45f43006bce24162ad491faf5ff02738adeeee
Signed-off-by: wangfcdl <wangfcdl@cn.ibm.com>
| -rw-r--r-- | org.eclipse.lyo.testsuite.server/assessment/cm/support/troubleshooting.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.lyo.testsuite.server/assessment/cm/support/troubleshooting.xml b/org.eclipse.lyo.testsuite.server/assessment/cm/support/troubleshooting.xml index c5ae062..6e854ef 100644 --- a/org.eclipse.lyo.testsuite.server/assessment/cm/support/troubleshooting.xml +++ b/org.eclipse.lyo.testsuite.server/assessment/cm/support/troubleshooting.xml @@ -69,7 +69,7 @@ <action>Verify baseUri is valid and accessible ...</action>
<action>Investigate network adapter ...</action>
</error>
- <error type="AppBehavior" regexp="expected:<400> but was:<500>">
+ <error type="AppBehavior" regexp="expected:<400> but was:<500>">
<rootcause>Product Defect</rootcause>
<action>Submit defect against the OSLC provider</action>
</error>
|

