@@ -67,7 +67,7 @@ internal struct ReplaceRangeTest {
67
67
internal init (
68
68
collection: [ Int ] , newElements: [ Int ] ,
69
69
rangeSelection: RangeSelection , expected: [ Int ] ,
70
- file: String = __FILE__, line: UWord = __LINE__
70
+ file: String = __FILE__, line: UInt = __LINE__
71
71
) {
72
72
self . collection = collection. map ( OpaqueValue . init)
73
73
self . newElements = newElements. map ( OpaqueValue . init)
@@ -85,7 +85,7 @@ internal struct AppendTest {
85
85
86
86
internal init (
87
87
collection: [ Int ] , newElement: Int , expected: [ Int ] ,
88
- file: String = __FILE__, line: UWord = __LINE__
88
+ file: String = __FILE__, line: UInt = __LINE__
89
89
) {
90
90
self . collection = collection. map ( OpaqueValue . init)
91
91
self . newElement = OpaqueValue ( newElement)
@@ -102,7 +102,7 @@ internal struct ExtendTest {
102
102
103
103
internal init (
104
104
collection: [ Int ] , newElements: [ Int ] , expected: [ Int ] ,
105
- file: String = __FILE__, line: UWord = __LINE__
105
+ file: String = __FILE__, line: UInt = __LINE__
106
106
) {
107
107
self . collection = collection. map ( OpaqueValue . init)
108
108
self . newElements = newElements. map ( OpaqueValue . init)
@@ -120,7 +120,7 @@ internal struct InsertTest {
120
120
121
121
internal init (
122
122
collection: [ Int ] , newElement: Int , indexSelection: IndexSelection ,
123
- expected: [ Int ] , file: String = __FILE__, line: UWord = __LINE__
123
+ expected: [ Int ] , file: String = __FILE__, line: UInt = __LINE__
124
124
) {
125
125
self . collection = collection. map ( OpaqueValue . init)
126
126
self . newElement = OpaqueValue ( newElement)
@@ -139,7 +139,7 @@ internal struct SpliceTest {
139
139
140
140
internal init (
141
141
collection: [ Int ] , newElements: [ Int ] , indexSelection: IndexSelection ,
142
- expected: [ Int ] , file: String = __FILE__, line: UWord = __LINE__
142
+ expected: [ Int ] , file: String = __FILE__, line: UInt = __LINE__
143
143
) {
144
144
self . collection = collection. map ( OpaqueValue . init)
145
145
self . newElements = newElements. map ( OpaqueValue . init)
@@ -159,7 +159,7 @@ internal struct RemoveAtIndexTest {
159
159
internal init (
160
160
collection: [ Int ] , indexSelection: IndexSelection ,
161
161
expectedRemovedElement: Int , expectedCollection: [ Int ] ,
162
- file: String = __FILE__, line: UWord = __LINE__
162
+ file: String = __FILE__, line: UInt = __LINE__
163
163
) {
164
164
self . collection = collection. map ( OpaqueValue . init)
165
165
self . indexSelection = indexSelection
@@ -177,7 +177,7 @@ internal struct RemoveLastTest {
177
177
178
178
internal init (
179
179
collection: [ Int ] , expectedRemovedElement: Int , expectedCollection: [ Int ] ,
180
- file: String = __FILE__, line: UWord = __LINE__
180
+ file: String = __FILE__, line: UInt = __LINE__
181
181
) {
182
182
self . collection = collection. map ( OpaqueValue . init)
183
183
self . expectedRemovedElement = expectedRemovedElement
@@ -194,7 +194,7 @@ internal struct RemoveRangeTest {
194
194
195
195
internal init (
196
196
collection: [ Int ] , rangeSelection: RangeSelection , expected: [ Int ] ,
197
- file: String = __FILE__, line: UWord = __LINE__
197
+ file: String = __FILE__, line: UInt = __LINE__
198
198
) {
199
199
self . collection = collection. map ( OpaqueValue . init)
200
200
self . rangeSelection = rangeSelection
@@ -210,7 +210,7 @@ internal struct RemoveAllTest {
210
210
211
211
internal init (
212
212
collection: [ Int ] , expected: [ Int ] ,
213
- file: String = __FILE__, line: UWord = __LINE__
213
+ file: String = __FILE__, line: UInt = __LINE__
214
214
) {
215
215
self . collection = collection. map ( OpaqueValue . init)
216
216
self . expected = expected
@@ -225,7 +225,7 @@ internal struct ReserveCapacityTest {
225
225
226
226
internal init (
227
227
collection: [ Int ] , requestedCapacity: Int ,
228
- file: String = __FILE__, line: UWord = __LINE__
228
+ file: String = __FILE__, line: UInt = __LINE__
229
229
) {
230
230
self . collection = collection. map ( OpaqueValue . init)
231
231
self . requestedCapacity = requestedCapacity
@@ -241,7 +241,7 @@ internal struct OperatorPlusTest {
241
241
242
242
internal init (
243
243
lhs: [ Int ] , rhs: [ Int ] , expected: [ Int ] ,
244
- file: String = __FILE__, line: UWord = __LINE__
244
+ file: String = __FILE__, line: UInt = __LINE__
245
245
) {
246
246
self . lhs = lhs. map ( OpaqueValue . init)
247
247
self . rhs = rhs. map ( OpaqueValue . init)
0 commit comments