@@ -24,7 +24,7 @@ final class ManifestEditTests: XCTestCase {
24
24
static let swiftSystemPackageDependency : PackageDependency = . sourceControl(
25
25
. init(
26
26
identity: " swift-system " ,
27
- location: . remote ( swiftSystemURL) ,
27
+ location: swiftSystemURL,
28
28
requirement: . branch( " main " )
29
29
)
30
30
)
@@ -55,7 +55,7 @@ final class ManifestEditTests: XCTestCase {
55
55
dependency: . sourceControl(
56
56
. init(
57
57
identity: " swift-system " ,
58
- location: . remote ( Self . swiftSystemURL) ,
58
+ location: Self . swiftSystemURL,
59
59
requirement: . branch( " main " )
60
60
)
61
61
)
@@ -89,7 +89,7 @@ final class ManifestEditTests: XCTestCase {
89
89
dependency: . sourceControl(
90
90
. init(
91
91
identity: " swift-system " ,
92
- location: . remote ( Self . swiftSystemURL) ,
92
+ location: Self . swiftSystemURL,
93
93
requirement: . exact( " 510.0.0 " )
94
94
)
95
95
)
@@ -121,7 +121,7 @@ final class ManifestEditTests: XCTestCase {
121
121
dependency: . sourceControl(
122
122
. init(
123
123
identity: " swift-system " ,
124
- location: . remote ( Self . swiftSystemURL) ,
124
+ location: Self . swiftSystemURL,
125
125
requirement: . exact( " 510.0.0 " )
126
126
)
127
127
)
@@ -155,7 +155,7 @@ final class ManifestEditTests: XCTestCase {
155
155
dependency: . sourceControl(
156
156
. init(
157
157
identity: " swift-system " ,
158
- location: . remote ( Self . swiftSystemURL) ,
158
+ location: Self . swiftSystemURL,
159
159
requirement: . exact( " 510.0.0 " )
160
160
)
161
161
)
@@ -213,7 +213,7 @@ final class ManifestEditTests: XCTestCase {
213
213
dependency: . sourceControl(
214
214
. init(
215
215
identity: " swift-system " ,
216
- location: . remote ( Self . swiftSystemURL) ,
216
+ location: Self . swiftSystemURL,
217
217
requirement: . rangeFrom( " 510.0.0 " )
218
218
)
219
219
)
@@ -242,7 +242,7 @@ final class ManifestEditTests: XCTestCase {
242
242
dependency: . sourceControl(
243
243
. init(
244
244
identity: " swift-system " ,
245
- location: . remote ( Self . swiftSystemURL) ,
245
+ location: Self . swiftSystemURL,
246
246
requirement: . rangeFrom( " 510.0.0 " )
247
247
)
248
248
)
@@ -269,7 +269,7 @@ final class ManifestEditTests: XCTestCase {
269
269
dependency: . sourceControl(
270
270
. init(
271
271
identity: " swift-system " ,
272
- location: . remote ( Self . swiftSystemURL) ,
272
+ location: Self . swiftSystemURL,
273
273
requirement: . rangeFrom( " 510.0.0 " )
274
274
)
275
275
)
@@ -300,7 +300,7 @@ final class ManifestEditTests: XCTestCase {
300
300
dependency: . sourceControl(
301
301
. init(
302
302
identity: " swift-system " ,
303
- location: . remote ( Self . swiftSystemURL) ,
303
+ location: Self . swiftSystemURL,
304
304
requirement: . range( lowerBound: " 508.0.0 " , upperBound: " 510.0.0 " )
305
305
)
306
306
)
0 commit comments