File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -164,9 +164,12 @@ class Thunks : NSObject {
164
164
)
165
165
}
166
166
167
- @objc func acceptBridgeableValueArray( _ raw: NSArray ) -> AnyObject {
167
+ @objc func acceptBridgeableValueArray( _ raw: NSArray ) {
168
168
let x = raw as! [ BridgeableValue ]
169
- return Box ( x)
169
+ expectEqualSequence (
170
+ raw. lazy. map { $0 as! BridgeableValue } ,
171
+ x
172
+ )
170
173
}
171
174
172
175
@objc func produceBridgeableValueArray( ) -> NSArray {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ - (id)acceptSubclassArray:(NSArray *)bridged expecting:(NSArray*)unbridged;
22
22
- (NSArray *)produceSubclassArray : (NSMutableArray *)expectations ;
23
23
- (void )checkProducedSubclassArray : (NSArray *)produced expecting : (NSArray *)expected ;
24
24
- (void )checkProducedBridgeableValueArray : (NSArray *)produced ;
25
- - (id )acceptBridgeableValueArray : (NSArray *)x ;
25
+ - (void )acceptBridgeableValueArray : (NSArray *)x ;
26
26
- (NSArray *)produceBridgeableValueArray ;
27
27
@end
28
28
You can’t perform that action at this time.
0 commit comments