Skip to content

Commit c385668

Browse files
author
Sean Olszewski
committed
Address PR comments
1 parent b8926d4 commit c385668

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Sources/XCTest/Public/XCAbstractTest.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ open class XCTest {
5353
}
5454

5555
/// Async setup method called before the invocation of `setUp` for each test method in the class.
56-
///
5756
@available(macOS 12.0, *)
5857
open func setUp() async throws {}
5958

Sources/XCTest/Public/XCTestCase.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ open class XCTestCase: XCTest {
3535
private let testClosure: XCTestCaseClosure
3636

3737
private var skip: XCTSkip?
38-
private let teardownBlocksState = XCTestCase.TeardownBlocksState()
38+
private let teardownBlocksState = TeardownBlocksState()
3939

4040
/// The name of the test case, consisting of its class name and the method
4141
/// name it will run.

0 commit comments

Comments
 (0)