File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -53,20 +53,10 @@ open class XCTestCase: XCTest {
53
53
}
54
54
55
55
/// The set of expectations made upon this test case.
56
- /// - Note: FIXME: This is meant to be a `private var`, but is marked as
57
- /// `public` here to work around a Swift compiler bug on Linux. To ensure
58
- /// compatibility of tests between swift-corelibs-xctest and Apple XCTest,
59
- /// this property should not be modified. See
60
- /// https://bugs.swift.org/browse/SR-1129 for details.
61
- public var _allExpectations = [ XCTestExpectation] ( )
56
+ final internal var _allExpectations = [ XCTestExpectation] ( )
62
57
63
58
/// An internal object implementing performance measurements.
64
- /// - Note: FIXME: This is meant to be a `internal var`, but is marked as
65
- /// `public` here to work around a Swift compiler bug on Linux. To ensure
66
- /// compatibility of tests between swift-corelibs-xctest and Apple XCTest,
67
- /// this property should not be modified. See
68
- /// https://bugs.swift.org/browse/SR-1129 for details.
69
- public var _performanceMeter : PerformanceMeter ?
59
+ final internal var _performanceMeter : PerformanceMeter ?
70
60
71
61
open override var testRunClass : AnyClass ? {
72
62
return XCTestCaseRun . self
You can’t perform that action at this time.
0 commit comments