Skip to content

Commit daabc34

Browse files
committed
remove comma from testcase xml output
1 parent 651fa22 commit daabc34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/formatters/junit_xml.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ struct TestCase {
5858

5959
[[nodiscard]] std::string to_xml() const {
6060
auto start =
61-
std::format(R"( <testcase name="{}" classname="{}" assertions="{}" time="{:f}", file="{}" line="{}")", name,
61+
std::format(R"( <testcase name="{}" classname="{}" assertions="{}" time="{:f}" file="{}" line="{}")", name,
6262
classname, assertions, time.count(), file, line);
6363
if (results.empty()) {
6464
return start + "/>";

0 commit comments

Comments
 (0)