remove AbsolutePath.url

This commit is contained in:
omochimetaru 2024-05-22 22:00:52 +09:00
parent cd9ead1398
commit 9c89fe7847
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ final class DevCommandTests: XCTestCase {
try await withFixture("EchoExecutable") { packageDirectory in
let process = try swiftRunProcess(
["carton", "dev", "--verbose", "--skip-auto-open"],
packageDirectory: packageDirectory.url
packageDirectory: packageDirectory.asURL
)
try await checkForExpectedContent(process: process, at: "http://127.0.0.1:8080")
@ -43,7 +43,7 @@ final class DevCommandTests: XCTestCase {
try await withFixture("EchoExecutable") { packageDirectory in
let process = try swiftRunProcess(
["carton", "dev", "--verbose", "--port", "8081", "--skip-auto-open"],
packageDirectory: packageDirectory.url
packageDirectory: packageDirectory.asURL
)
try await checkForExpectedContent(process: process, at: "http://127.0.0.1:8081")