Skip to content

Commit 932cb01

Browse files
authored
Fix a dead store in configurationForSwiftPMEntryPoint(withArguments:). (#300)
This PR fixes a (harmless) dead store to `configuration.isParallelizationEnabled` in the aforementioned function. ### 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.
1 parent 10e86f4 commit 932cb01

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Sources/Testing/Running/EntryPoint.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ func listTestsForSwiftPM(_ tests: some Sequence<Test>) -> [String] {
136136
/// validated the passed arguments.
137137
func configurationForSwiftPMEntryPoint(withArguments args: [String]) throws -> Configuration {
138138
var configuration = Configuration()
139-
configuration.isParallelizationEnabled = false
140139

141140
// Do not consider the executable path AKA argv[0].
142141
let args = args.dropFirst()

0 commit comments

Comments
 (0)