Skip to content

Commit c201a3e

Browse files
Fix deprecated warnings
1 parent 698ef2f commit c201a3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

IntegrationTests/TestSuites/Sources/PrimaryTests/UnitTestUtils.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func expectArray(_ value: JSValue, file: StaticString = #file, line: UInt = #lin
5353
return array
5454
}
5555

56-
func expectFunction(_ value: JSValue, file: StaticString = #file, line: UInt = #line, column: UInt = #column) throws -> JSFunctionRef {
56+
func expectFunction(_ value: JSValue, file: StaticString = #file, line: UInt = #line, column: UInt = #column) throws -> JSFunction {
5757
switch value {
5858
case let .function(ref): return ref
5959
default:

0 commit comments

Comments
 (0)