File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -586,15 +586,15 @@ public struct TestLibraryOptions: ParsableArguments {
586
586
/// have the correct default value if the user didn't specify one.
587
587
@Flag ( name: . customLong( " swift-testing " ) ,
588
588
inversion: . prefixedEnableDisable,
589
- help: " Enable support for swift-testing " )
589
+ help: " Enable support for Swift Testing " )
590
590
public var explicitlyEnableSwiftTestingLibrarySupport : Bool ?
591
591
592
592
/// Legacy experimental equivalent of ``explicitlyEnableSwiftTestingLibrarySupport``.
593
593
///
594
594
/// This option will be removed in a future update.
595
595
@Flag ( name: . customLong( " experimental-swift-testing " ) ,
596
596
inversion: . prefixedEnableDisable,
597
- help: . hidden )
597
+ help: . private )
598
598
public var explicitlyEnableExperimentalSwiftTestingLibrarySupport : Bool ?
599
599
600
600
/// Test whether or not a given library is enabled.
@@ -609,7 +609,7 @@ public struct TestLibraryOptions: ParsableArguments {
609
609
610
610
/// The list of enabled testing libraries.
611
611
public var enabledTestingLibraries : [ BuildParameters . Testing . Library ] {
612
- [ . xctest, . swiftTesting] . lazy . filter ( isEnabled)
612
+ [ . xctest, . swiftTesting] . filter ( isEnabled)
613
613
}
614
614
}
615
615
You can’t perform that action at this time.
0 commit comments