Skip to content

Commit d81e9cd

Browse files
committed
wip
1 parent bcf5f93 commit d81e9cd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Sources/IssueReporting/Internal/TestSupport.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ func _recordIssue(
1515
column: Int
1616
) {
1717
#if os(WASI)
18-
let _recordIssue = _recordIssue()
18+
let _recordIssue = IssueReportingTestSupport._recordIssue()
1919
#else
2020
guard let _recordIssue = function(for: "IssueReportingTestSupport_RecordIssue")
2121
else { return }
@@ -31,7 +31,7 @@ func _withKnownIssue(
3131
_ body: () throws -> Void
3232
) {
3333
#if os(WASI)
34-
let _withKnownIssue = _withKnownIssue()
34+
let _withKnownIssue = IssueReportingTestSupport._withKnownIssue()
3535
#else
3636
guard let _withKnownIssue = function(for: "IssueReportingTestSupport_WithKnownIssue")
3737
else { return }
@@ -44,7 +44,7 @@ func _withKnownIssue(
4444
@usableFromInline
4545
func _currentTestIsNotNil() -> Bool {
4646
#if os(WASI)
47-
let _currentTestIsNotNil = _currentTestIsNotNil()
47+
let _currentTestIsNotNil = IssueReportingTestSupport._currentTestIsNotNil()
4848
#else
4949
guard let _currentTestIsNotNil = function(for: "IssueReportingTestSupport_CurrentTestIsNotNil")
5050
else { return false }
@@ -56,7 +56,7 @@ func _currentTestIsNotNil() -> Bool {
5656
@usableFromInline
5757
func _XCTFail(_ message: String, file: StaticString, line: UInt) {
5858
#if os(WASI)
59-
let _XCTFail = _XCTFail()
59+
let _XCTFail = IssueReportingTestSupport._XCTFail()
6060
#else
6161
guard let _XCTFail = function(for: "IssueReportingTestSupport_XCTFail")
6262
else { return }
@@ -72,7 +72,7 @@ func _XCTExpectFailure(
7272
failingBlock: () throws -> Void
7373
) rethrows {
7474
#if os(WASI)
75-
let _XCTExpectFailure = _XCTExpectFailure()
75+
let _XCTExpectFailure = IssueReportingTestSupport._XCTExpectFailure()
7676
#else
7777
guard let _XCTExpectFailure = function(for: "IssueReportingTestSupport_XCTExpectFailure")
7878
else { return }

0 commit comments

Comments
 (0)