Skip to content

Commit f8e0b00

Browse files
committed
[SE-0112] Fix an iOS-only test for NSError bridging.
1 parent cb8ec87 commit f8e0b00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/1_stdlib/AssetsLibrary.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ let library = ALAssetsLibrary()
1111
library.enumerateGroupsWithTypes(ALAssetsGroupAll,
1212
usingBlock: {(group: ALAssetsGroup?, stop: UnsafeMutablePointer<ObjCBool>?) -> Void in
1313
print("Swift usingBlock")},
14-
failureBlock: {(error: NSError?) -> Void in
14+
failureBlock: {(error: Error?) -> Void in
1515
print("Swift failureBlock")})
1616

0 commit comments

Comments
 (0)