@@ -24,7 +24,7 @@ final class ManifestEditTests: XCTestCase {
2424 static let swiftSystemPackageDependency : PackageDependency = . sourceControl(
2525 . init(
2626 identity: " swift-system " ,
27- location: . remote ( swiftSystemURL) ,
27+ location: swiftSystemURL,
2828 requirement: . branch( " main " )
2929 )
3030 )
@@ -55,7 +55,7 @@ final class ManifestEditTests: XCTestCase {
5555 dependency: . sourceControl(
5656 . init(
5757 identity: " swift-system " ,
58- location: . remote ( Self . swiftSystemURL) ,
58+ location: Self . swiftSystemURL,
5959 requirement: . branch( " main " )
6060 )
6161 )
@@ -89,7 +89,7 @@ final class ManifestEditTests: XCTestCase {
8989 dependency: . sourceControl(
9090 . init(
9191 identity: " swift-system " ,
92- location: . remote ( Self . swiftSystemURL) ,
92+ location: Self . swiftSystemURL,
9393 requirement: . exact( " 510.0.0 " )
9494 )
9595 )
@@ -121,7 +121,7 @@ final class ManifestEditTests: XCTestCase {
121121 dependency: . sourceControl(
122122 . init(
123123 identity: " swift-system " ,
124- location: . remote ( Self . swiftSystemURL) ,
124+ location: Self . swiftSystemURL,
125125 requirement: . exact( " 510.0.0 " )
126126 )
127127 )
@@ -155,7 +155,7 @@ final class ManifestEditTests: XCTestCase {
155155 dependency: . sourceControl(
156156 . init(
157157 identity: " swift-system " ,
158- location: . remote ( Self . swiftSystemURL) ,
158+ location: Self . swiftSystemURL,
159159 requirement: . exact( " 510.0.0 " )
160160 )
161161 )
@@ -213,7 +213,7 @@ final class ManifestEditTests: XCTestCase {
213213 dependency: . sourceControl(
214214 . init(
215215 identity: " swift-system " ,
216- location: . remote ( Self . swiftSystemURL) ,
216+ location: Self . swiftSystemURL,
217217 requirement: . rangeFrom( " 510.0.0 " )
218218 )
219219 )
@@ -242,7 +242,7 @@ final class ManifestEditTests: XCTestCase {
242242 dependency: . sourceControl(
243243 . init(
244244 identity: " swift-system " ,
245- location: . remote ( Self . swiftSystemURL) ,
245+ location: Self . swiftSystemURL,
246246 requirement: . rangeFrom( " 510.0.0 " )
247247 )
248248 )
@@ -269,7 +269,7 @@ final class ManifestEditTests: XCTestCase {
269269 dependency: . sourceControl(
270270 . init(
271271 identity: " swift-system " ,
272- location: . remote ( Self . swiftSystemURL) ,
272+ location: Self . swiftSystemURL,
273273 requirement: . rangeFrom( " 510.0.0 " )
274274 )
275275 )
@@ -300,7 +300,7 @@ final class ManifestEditTests: XCTestCase {
300300 dependency: . sourceControl(
301301 . init(
302302 identity: " swift-system " ,
303- location: . remote ( Self . swiftSystemURL) ,
303+ location: Self . swiftSystemURL,
304304 requirement: . range( lowerBound: " 508.0.0 " , upperBound: " 510.0.0 " )
305305 )
306306 )
0 commit comments