File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -937,7 +937,7 @@ func convertArrayToNSArray<T>(_ array: [T]) -> NSArray {
937
937
}
938
938
939
939
func getBridgedNSArrayOfValueTypeCustomBridged(
940
- numElements numElements : Int = 3 ,
940
+ numElements: Int = 3 ,
941
941
capacity: Int ? = nil
942
942
) -> NSArray {
943
943
assert ( !_isBridgedVerbatimToObjectiveC( TestBridgedValueTy . self) )
Original file line number Diff line number Diff line change @@ -3467,7 +3467,7 @@ class MockDictionaryWithCustomCount : NSDictionary {
3467
3467
static var timesCountWasCalled = 0
3468
3468
}
3469
3469
3470
- func getMockDictionaryWithCustomCount( count count : Int )
3470
+ func getMockDictionaryWithCustomCount( count: Int )
3471
3471
-> Dictionary < NSObject , AnyObject > {
3472
3472
3473
3473
return MockDictionaryWithCustomCount ( count: count) as Dictionary
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ func getBridgedNSSetOfRefTypesBridgedVerbatim() -> NSSet {
249
249
}
250
250
251
251
func getBridgedNSSet_ValueTypesCustomBridged(
252
- numElements numElements : Int = 3
252
+ numElements: Int = 3
253
253
) -> NSSet {
254
254
expectTrue ( !_isBridgedVerbatimToObjectiveC( TestBridgedKeyTy . self) )
255
255
@@ -3501,7 +3501,7 @@ class MockSetWithCustomCount : NSSet {
3501
3501
static var timesCountWasCalled = 0
3502
3502
}
3503
3503
3504
- func getMockSetWithCustomCount( count count : Int )
3504
+ func getMockSetWithCustomCount( count: Int )
3505
3505
-> Set < NSObject > {
3506
3506
3507
3507
return MockSetWithCustomCount ( count: count) as Set
You can’t perform that action at this time.
0 commit comments