Skip to content

Commit b1fedf8

Browse files
committed
Remove @_spi(Experimental) from ExitTest.CapturedValue.
These symbols should be `@_spi(ForToolsIntegrationOnly)` but are no longer considered experimental.
1 parent 87f4168 commit b1fedf8

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Sources/Testing/ExitTests/ExitTest.CapturedValue.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
private import _TestingInternals
1212

13-
@_spi(Experimental) @_spi(ForToolsIntegrationOnly)
13+
@_spi(ForToolsIntegrationOnly)
1414
#if SWT_NO_EXIT_TESTS
1515
@available(*, unavailable, message: "Exit tests are not available on this platform.")
1616
#endif

Sources/Testing/ExitTests/ExitTest.Condition.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ extension ExitTest.Condition {
176176

177177
// MARK: - CustomStringConvertible
178178

179-
@_spi(Experimental)
180179
#if SWT_NO_EXIT_TESTS
181180
@available(*, unavailable, message: "Exit tests are not available on this platform.")
182181
#endif

Sources/Testing/ExitTests/ExitTest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public struct ExitTest: Sendable, ~Copyable {
128128
///
129129
/// The order of values in this array must be the same between the parent and
130130
/// child processes.
131-
@_spi(Experimental) @_spi(ForToolsIntegrationOnly)
131+
@_spi(ForToolsIntegrationOnly)
132132
public var capturedValues = [CapturedValue]()
133133

134134
/// Make a copy of this instance.

0 commit comments

Comments
 (0)