You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove redundant word from console output for test case started events in verbose mode (#1180)
This is a small fix for an oversight I made in #1125: the word `started`
is printed twice at the end of the console message for
`.testCaseStarted` events in verbose mode.
### Checklist:
- [x] Code and documentation should follow the style of the [Style
Guide](https://github.com/apple/swift-testing/blob/main/Documentation/StyleGuide.md).
- [x] If public symbols are renamed or modified, DocC references should
be updated.
stringValue:"Test case passing \(arguments.count.counting("argument"))\(testCase.labeledArguments(includingQualifiedTypeNames: verbosity >0)) to \(testName)\(status) started."
527
+
stringValue:"Test case passing \(arguments.count.counting("argument"))\(testCase.labeledArguments(includingQualifiedTypeNames: verbosity >0)) to \(testName) started."
0 commit comments