@@ -1289,10 +1289,10 @@ final class PrebuiltsTests: XCTestCase {
12891289 throw StringError ( " invalid request \( request. kind) " )
12901290 }
12911291
1292- if request. url == " https://download.swift.org/prebuilts/swift-syntax/600.0.1/ \( self . swiftVersion) -manifest .json" {
1292+ if request. url == " https://download.swift.org/prebuilts/swift-syntax/600.0.1/ \( self . swiftVersion) .json " {
12931293 try fileSystem. writeFileContents ( destination, data: manifestData)
12941294 return . okay( )
1295- } else if request. url == " https://download.swift.org/prebuilts/swift-syntax/600.0.1/ \( self . swiftVersion) -MacroSupport-macos_aarch64 .zip " {
1295+ } else if request. url == " https://download.swift.org/prebuilts/swift-syntax/600.0.1/ \( self . swiftVersion) -MacroSupport.zip " {
12961296 try fileSystem. writeFileContents ( destination, data: artifact)
12971297 return . okay( )
12981298 } else {
@@ -1302,8 +1302,8 @@ final class PrebuiltsTests: XCTestCase {
13021302 }
13031303
13041304 let archiver = MockArchiver ( handler: { _, archivePath, destination, completion in
1305- XCTAssertEqual ( archivePath, sandbox. appending ( components: " .build " , " prebuilts " , " swift-syntax " , " 600.0.1 " , " \( self . swiftVersion) -MacroSupport-macos_aarch64 .zip " ) )
1306- XCTAssertEqual ( destination, sandbox. appending ( components: " .build " , " prebuilts " , " swift-syntax " , " 600.0.1 " , " \( self . swiftVersion) -MacroSupport-macos_aarch64 " ) )
1305+ XCTAssertEqual ( archivePath, sandbox. appending ( components: " .build " , " prebuilts " , " swift-syntax " , " 600.0.1 " , " \( self . swiftVersion) -MacroSupport.zip " ) )
1306+ XCTAssertEqual ( destination, sandbox. appending ( components: " .build " , " prebuilts " , " swift-syntax " , " 600.0.1 " , " \( self . swiftVersion) -MacroSupport " ) )
13071307 completion ( . success( ( ) ) )
13081308 } )
13091309
0 commit comments