Skip to content

Commit

Permalink
Fixed: XML test results contained skipfailedinvocationCounts instead …
Browse files Browse the repository at this point in the history
…of skipfailedinvocationcounts
  • Loading branch information
cbeust committed Jun 25, 2010
1 parent 8fdff5c commit c4b4679
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.txt
Expand Up @@ -3,6 +3,7 @@ Current:
Added: New ant task tag: propertyset (Todd Wells)
Added: ITestNGListenerFactory
Added: Passing command line properties via the ant task and doc update (Todd Wells)
Fixed: XML test results contained skipfailedinvocationCounts instead of skipfailedinvocationcounts
Fixed: Issue4 assertEquals for primitive arrays, Issue34 assertNull javadoc updated
Fixed: Issue78 NPE with non-public class. Now throws TestNG exception
Fixed: NPE with @Optional null parameters (Yves Dessertine)
Expand Down
2 changes: 1 addition & 1 deletion src/org/testng/xml/XmlSuite.java
Expand Up @@ -393,7 +393,7 @@ public String toXml() {
p.setProperty("data-provider-thread-count", String.valueOf(getDataProviderThreadCount()));
p.setProperty("annotations", getAnnotations());
p.setProperty("junit", m_isJUnit != null ? m_isJUnit.toString() : "false"); // TESTNG-141
p.setProperty("skipfailedinvocationCounts",
p.setProperty("skipfailedinvocationcounts",
m_skipFailedInvocationCounts != null
? m_skipFailedInvocationCounts.toString() : "false");
if(null != m_objectFactory)
Expand Down

0 comments on commit c4b4679

Please sign in to comment.