@@ -15,7 +15,7 @@ func _recordIssue(
15
15
column: Int
16
16
) {
17
17
#if os(WASI)
18
- let _recordIssue = _recordIssue ( )
18
+ let _recordIssue = IssueReportingTestSupport . _recordIssue ( )
19
19
#else
20
20
guard let _recordIssue = function ( for: " IssueReportingTestSupport_RecordIssue " )
21
21
else { return }
@@ -31,7 +31,7 @@ func _withKnownIssue(
31
31
_ body: ( ) throws -> Void
32
32
) {
33
33
#if os(WASI)
34
- let _withKnownIssue = _withKnownIssue ( )
34
+ let _withKnownIssue = IssueReportingTestSupport . _withKnownIssue ( )
35
35
#else
36
36
guard let _withKnownIssue = function ( for: " IssueReportingTestSupport_WithKnownIssue " )
37
37
else { return }
@@ -44,7 +44,7 @@ func _withKnownIssue(
44
44
@usableFromInline
45
45
func _currentTestIsNotNil( ) -> Bool {
46
46
#if os(WASI)
47
- let _currentTestIsNotNil = _currentTestIsNotNil ( )
47
+ let _currentTestIsNotNil = IssueReportingTestSupport . _currentTestIsNotNil ( )
48
48
#else
49
49
guard let _currentTestIsNotNil = function ( for: " IssueReportingTestSupport_CurrentTestIsNotNil " )
50
50
else { return false }
@@ -56,7 +56,7 @@ func _currentTestIsNotNil() -> Bool {
56
56
@usableFromInline
57
57
func _XCTFail( _ message: String , file: StaticString , line: UInt ) {
58
58
#if os(WASI)
59
- let _XCTFail = _XCTFail ( )
59
+ let _XCTFail = IssueReportingTestSupport . _XCTFail ( )
60
60
#else
61
61
guard let _XCTFail = function ( for: " IssueReportingTestSupport_XCTFail " )
62
62
else { return }
@@ -72,7 +72,7 @@ func _XCTExpectFailure(
72
72
failingBlock: ( ) throws -> Void
73
73
) rethrows {
74
74
#if os(WASI)
75
- let _XCTExpectFailure = _XCTExpectFailure ( )
75
+ let _XCTExpectFailure = IssueReportingTestSupport . _XCTExpectFailure ( )
76
76
#else
77
77
guard let _XCTExpectFailure = function ( for: " IssueReportingTestSupport_XCTExpectFailure " )
78
78
else { return }
0 commit comments