Skip to content

Commit

Permalink
Correctly write skipped tests to JUnit reports.
Browse files Browse the repository at this point in the history
  • Loading branch information
npruehs committed Jun 18, 2020
1 parent b17b275 commit 3049117
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ FString FDaeJUnitReportWriter::CreateReport(const FString& Name,
else if (TestResult.WasSkipped())
{
XmlString +=
FString::Printf(TEXT(" <skipped>%s</failure>"), *TestResult.SkipReason)
FString::Printf(TEXT(" <skipped>%s</skipped>"), *TestResult.SkipReason)
+ LINE_TERMINATOR;
}

Expand Down

0 comments on commit 3049117

Please sign in to comment.