Browse Source

*** empty log message ***

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273708 13f79535-47bb-0310-9956-ffa450edef68
master
Costin Manolache 22 years ago
parent
commit
1bf5797759
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      src/testcases/org/apache/tools/ant/taskdefs/XmlPropertyTest.java

+ 4
- 2
src/testcases/org/apache/tools/ant/taskdefs/XmlPropertyTest.java View File

@@ -290,8 +290,10 @@ public class XmlPropertyTest extends BuildFileTest {
if (currentValue instanceof Path) {
} else if (currentValue instanceof String) {
} else {
fail(msg + "-" + inputFile.getName() + " Key="
+ currentKey + " is not a recognized type.");
if( ! currentKey.startsWith("ant.") ) {
fail(msg + "-" + inputFile.getName() + " Key="
+ currentKey + " is not a recognized type.");
}
}
}
}


Loading…
Cancel
Save