Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix timestamp attribute in junit xml report (#3172)
There is a bug in the way the `testsuite` element is generated. ### Actual ``` <testsuite name="MyTest" tests="4" failures="0" errors="0" skipped="0" time="0.724"> timestamp=2024-05-21T18:57:25 ... </testsuite> ``` ### Expected ``` <testsuite name="MyTest" tests="4" failures="0" errors="0" skipped="0" time="0.724" timestamp="2024-05-21T18:57:25"> ... </testsuite> ``` The `timestamp` attribute in not an attribute... Pull request: #3172
- Loading branch information